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)