Merge branch 'master' of https://github.com/tgstation/-tg-station into bugsarethemotheroffeatures

This commit is contained in:
Jordie0608
2015-05-20 01:16:16 +10:00
19 changed files with 103 additions and 73 deletions
@@ -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))
+4 -4
View File
@@ -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