Update code/modules/food/food.dm

Co-authored-by: Spookerton <spkrtn@pm.me>
This commit is contained in:
Mechoid
2022-11-29 18:31:04 -08:00
committed by GitHub
co-authored by Spookerton
parent dc2ae26c60
commit 98e9185a72
+1 -1
View File
@@ -21,7 +21,7 @@
/obj/item/reagent_containers/food/proc/handle_name_change(var/mob/living/user)
if(!isliving(user) || user.stat == DEAD)
to_chat(user, SPAN_NOTICE("The dead can't cook!"))
to_chat(user, SPAN_WARNING("The dead can't cook!"))
return
var/n_name = sanitizeSafe(input(user, "What would you like to name \the [src]? Leave blank to reset.", "Food Naming", null) as text, MAX_NAME_LEN)
if(!n_name)