You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 22, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: code/modules/jobs/job_types/_job.dm
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -224,6 +224,9 @@
224
224
225
225
//If the configuration option is set to require players to be logged as old enough to play certain jobs, then this proc checks that they are, otherwise it just returns 1
226
226
/datum/job/proc/player_old_enough(client/C)
227
+
var/isexempt= C.prefs.db_flags &DB_FLAG_EXEMPT//if we're exempt from job EXP requirements we also should be exempt from account age probably
228
+
if(isexempt)
229
+
returnTRUE
227
230
if(available_in_days(C) ==0)
228
231
returnTRUE//Available in 0 days = available right now = player is old enough to play.
0 commit comments