Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
DexterDude committed Jun 9, 2024
1 parent 93d95b5 commit b514060
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ GLOBAL_VAR_INIT(main_platoon_initial_name, GLOB.main_platoon_name)
if(!new_name || !istext(new_name))
return

if(length(new_name) > 10)
to_chat(src, SPAN_NOTICE("The platoon name should be 10 characters or less."))
if(length(new_name) > 16)
to_chat(src, SPAN_NOTICE("The platoon name should be 16 characters or less."))
return

var/old_name = GLOB.main_platoon_name
Expand Down

0 comments on commit b514060

Please sign in to comment.