Standardizes reagent examine code

So reagents that obscure reagent examine are worth a damn, and the funny hallucination text comes up more
This commit is contained in:
madmanmartian
2019-07-22 00:28:25 +01:00
parent 5dee8676da
commit bce7b0d251
13 changed files with 56 additions and 88 deletions

View File

@@ -335,15 +335,6 @@ var/list/LOGGED_SPLASH_REAGENTS = list(FUEL, THERMITE)
else
return "No reagents"
/obj/item/weapon/reagent_containers/proc/show_list_of_reagents(mob/user) //Displays a list of the reagents to a mob, formatted for reading
to_chat(user, "It contains:")
if(!reagents.total_volume)
to_chat(user, "<span class='info'>Nothing.</span>")
else
if(reagents.reagent_list.len)
for(var/datum/reagent/R in reagents.reagent_list)
to_chat(user, "<span class='info'>[R.volume] units of [R.name]</span>")
/obj/item/weapon/reagent_containers/proc/fits_in_iv_drip()
return FALSE