Skip to content
This repository was archived by the owner on Sep 25, 2025. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/__DEFINES/mobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@
#define OFFSET_NECK "neck"

//MINOR TWEAKS/MISC
#define AGE_MIN 18 //youngest a character can be
#define AGE_MIN 19 //youngest a character can be
#define AGE_MAX 122 //oldest a character can be
#define AGE_MINOR 20 //legal age of space drinking and smoking
#define WIZARD_AGE_MIN 30 //youngest a wizard can be
Expand Down
4 changes: 2 additions & 2 deletions code/__HELPERS/mobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ GLOBAL_LIST_EMPTY(species_list)
return "toddler"
if(3 to 13)
return "child"
if(13 to 19)
if(13 to 17)
return "teenager"
if(19 to 30)
if(18 to 30)
return "young adult"
if(30 to 45)
return "adult"
Expand Down