mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-28 15:47:15 +01:00
Merge branch 'master' of https://github.com/tgstation/-tg-station into bugsarethemotheroffeatures
This commit is contained in:
@@ -108,7 +108,7 @@
|
||||
else if(istype(O, /obj/item/weapon/soap/)) // If they're trying to clean it then let them
|
||||
var/obj/item/weapon/soap/P = O
|
||||
user.visible_message( \
|
||||
"[user] starts to clean the microwave.S", \
|
||||
"[user] starts to clean the microwave.", \
|
||||
"<span class='notice'>You start to clean the microwave...</span>" \
|
||||
)
|
||||
if (do_after(user, P.cleanspeed))
|
||||
|
||||
@@ -425,14 +425,14 @@ datum/reagents/proc/clear_reagents()
|
||||
del_reagent(R.id)
|
||||
return 0
|
||||
|
||||
datum/reagents/proc/reaction(var/atom/A, var/method=TOUCH, var/volume_modifier=0,var/show_message=1)
|
||||
datum/reagents/proc/reaction(var/atom/A, var/method=TOUCH, var/volume_modifier=1,var/show_message=1)
|
||||
for(var/datum/reagent/R in reagent_list)
|
||||
if(ismob(A))
|
||||
R.reaction_mob(A, method, R.volume+volume_modifier, show_message)
|
||||
R.reaction_mob(A, method, R.volume*volume_modifier, show_message)
|
||||
if(isturf(A))
|
||||
R.reaction_turf(A, R.volume+volume_modifier, show_message)
|
||||
R.reaction_turf(A, R.volume*volume_modifier, show_message)
|
||||
if(isobj(A))
|
||||
R.reaction_obj(A, R.volume+volume_modifier, show_message)
|
||||
R.reaction_obj(A, R.volume*volume_modifier, show_message)
|
||||
|
||||
return
|
||||
|
||||
|
||||
Reference in New Issue
Block a user