Merge pull request #227 from Alphas00/master

Misc fixes
This commit is contained in:
evilew
2024-08-11 12:42:36 +02:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -21,7 +21,7 @@
. = ..()
if(!using)
using = TRUE
visible_message("<span>[user] does a rep with the [src]. YEEEEEAH!!!</span>")
to_chat(user, "<span>You do a rep with the [src]. YEEEEEAH!!!</span>")
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("<span>[user] couldn't complete the rep. YOU'LL GET IT NEXT TIME CHAMP!!!</span>")
to_chat(user, "<span>You couldn't complete the rep. YOU'LL GET IT NEXT TIME CHAMP!!!</span>")
using = FALSE
/obj/machinery/conveyor/treadmill
@@ -46,7 +46,7 @@
/datum/reagent/drug/munchies/on_mob_life(mob/living/carbon/M)
. = ..()
if(prob(10))
to_chat(M, "<span class='warning'>[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...")]</span>")
to_chat(M, "<span class='warning'>[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...")]</span>")
if(M.fullness > 10)
M.fullness -= 1
if(M.nutrition > 150)