From b6a1f2d9dd724fb926c78f5cb992aabc6e31ffa8 Mon Sep 17 00:00:00 2001 From: Alphas00 <154434082+Alphas00@users.noreply.github.com> Date: Sat, 10 Aug 2024 18:20:46 +0200 Subject: [PATCH] Misc fixes Changed dumbbell chat messages to only appear for the user. Fixed grammatical errors in appetite stimulant --- GainStation13/code/modules/gym/gym.dm | 4 ++-- GainStation13/code/modules/hydroponics/munchies_weed.dm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/GainStation13/code/modules/gym/gym.dm b/GainStation13/code/modules/gym/gym.dm index 33fbcefc..79d1f0d1 100644 --- a/GainStation13/code/modules/gym/gym.dm +++ b/GainStation13/code/modules/gym/gym.dm @@ -21,7 +21,7 @@ . = ..() if(!using) using = TRUE - visible_message("[user] does a rep with the [src]. YEEEEEAH!!!") + to_chat(user, "You do a rep with the [src]. YEEEEEAH!!!") if(do_after(usr, CLICK_CD_RESIST-reps, 0, usr, 1)) if(iscarbon(user)) var/mob/living/carbon/U = user @@ -29,7 +29,7 @@ if(reps < 16) reps += 0.4 else - visible_message("[user] couldn't complete the rep. YOU'LL GET IT NEXT TIME CHAMP!!!") + to_chat(user, "You couldn't complete the rep. YOU'LL GET IT NEXT TIME CHAMP!!!") using = FALSE /obj/machinery/conveyor/treadmill diff --git a/GainStation13/code/modules/hydroponics/munchies_weed.dm b/GainStation13/code/modules/hydroponics/munchies_weed.dm index bafba6f5..f25bd743 100644 --- a/GainStation13/code/modules/hydroponics/munchies_weed.dm +++ b/GainStation13/code/modules/hydroponics/munchies_weed.dm @@ -46,7 +46,7 @@ /datum/reagent/drug/munchies/on_mob_life(mob/living/carbon/M) . = ..() if(prob(10)) - to_chat(M, "[pick("You feel a little ravenous...", "You could really go feel for a snack right now...", "The taste of food seems really enticing right now...", "Your belly groans, demanding food...")]") + to_chat(M, "[pick("You feel a little ravenous...", "You could really go for a snack right now...", "The taste of food seems really enticing right now...", "Your belly groans, demanding food...")]") if(M.fullness > 10) M.fullness -= 1 if(M.nutrition > 150)