Skip to content

Commit

Permalink
No bully pls :(
Browse files Browse the repository at this point in the history
  • Loading branch information
Muncher2112 committed Oct 30, 2020
1 parent 19c4160 commit 0dd6161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/game/objects/structures/watercloset.dm
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,8 @@
if (ishuman(user))
var/mob/living/carbon/human/H = user
if(H.thirst <= THIRST_LEVEL_THIRSTY)
var/datum/reagents/reagents = new/datum/reagents(3)
var/amount_per_transfer_from_this = 3
var/datum/reagents/reagents = create_reagents(amount_per_transfer_from_this )
reagents.add_reagent(/datum/reagent/water, amount_per_transfer_from_this)
to_chat(usr, "<span class='notice'>You use your hands to gulp down water.</span>")
reagents.trans_to_mob(user, issmall(user) ? ceil(amount_per_transfer_from_this/2) : amount_per_transfer_from_this, CHEM_INGEST)
Expand Down

0 comments on commit 0dd6161

Please sign in to comment.