mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user