From babe27afed681a3099c898542baf6081508876f6 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Fri, 26 Sep 2025 06:44:45 -0700 Subject: [PATCH] [MIRROR] that needs a db, so check if it actually was set (#11744) Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> --- code/game/jobs/job_controller.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm index 137eb0921a..7f3af45eac 100644 --- a/code/game/jobs/job_controller.dm +++ b/code/game/jobs/job_controller.dm @@ -488,7 +488,7 @@ var/global/datum/controller/occupations/job_master /* CHOMPRemove Start //Give new players a welcome guide! - if(H.client.player_age < 10) + if(isnum(H.client.player_age) && H.client.player_age < 10) H.equip_to_slot_or_del(new /obj/item/book/manual/virgo_pamphlet(H), slot_r_hand) */// CHOMPRemove End else