Skip to content

Commit

Permalink
Buffs platoon name size to 16 (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
DexterDude committed Jun 10, 2024
1 parent 321bd7e commit a0a84ac
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 a0a84ac

Please sign in to comment.