From b63399b57d5cb8758c6471b1fda471f9997c07c9 Mon Sep 17 00:00:00 2001 From: Alphas00 <154434082+Alphas00@users.noreply.github.com> Date: Sun, 17 Nov 2024 13:49:01 +0100 Subject: [PATCH] 2nd Bartender Slow, Dumbbell fix Added a second job slot for bartender Dumbbell runtime error fixed --- GainStation13/code/modules/gym/gym.dm | 2 +- code/modules/jobs/job_types/bartender.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/GainStation13/code/modules/gym/gym.dm b/GainStation13/code/modules/gym/gym.dm index 0220bececb..ddaeca47cd 100644 --- a/GainStation13/code/modules/gym/gym.dm +++ b/GainStation13/code/modules/gym/gym.dm @@ -22,7 +22,7 @@ if(!using) using = TRUE to_chat(user, "You do a rep with the [src]. YEEEEEAH!!!") - if(do_after(usr, CLICK_CD_RESIST-reps, 0, usr, 1)) + if(do_after(usr, CLICK_CD_RESIST-reps, usr)) if(iscarbon(user)) var/mob/living/carbon/U = user U.adjust_fatness(-10, FATTENING_TYPE_WEIGHT_LOSS) diff --git a/code/modules/jobs/job_types/bartender.dm b/code/modules/jobs/job_types/bartender.dm index 6d8f4256b5..ec3d4d8d6b 100644 --- a/code/modules/jobs/job_types/bartender.dm +++ b/code/modules/jobs/job_types/bartender.dm @@ -4,7 +4,7 @@ department_head = list("Head of Personnel") department_flag = CIVILIAN faction = "Station" - total_positions = 1 + total_positions = 2 spawn_positions = 1 supervisors = "the head of personnel" selection_color = "#bbe291"