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
@@ -225,6 +225,9 @@
225
225
226
226
//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
227
227
/datum/job/proc/player_old_enough(client/C)
228
+
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
229
+
if(isexempt)
230
+
returnTRUE
228
231
if(available_in_days(C) ==0)
229
232
returnTRUE//Available in 0 days = available right now = player is old enough to play.
0 commit comments