From 419acccc9979acfcf177e574d9c06e73408fcad5 Mon Sep 17 00:00:00 2001 From: Terilia Date: Sun, 20 Jan 2019 16:52:36 +0000 Subject: [PATCH] Updated the cat. If you reference a variable, you need to define it right, woops! --- code/modules/mob/living/simple_animal/friendly/cat.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/friendly/cat.dm b/code/modules/mob/living/simple_animal/friendly/cat.dm index eef673b9876..c37b54938ac 100644 --- a/code/modules/mob/living/simple_animal/friendly/cat.dm +++ b/code/modules/mob/living/simple_animal/friendly/cat.dm @@ -229,5 +229,5 @@ free cake to the station!") var/new_name = stripped_input(src, "Enter your name, or press \"Cancel\" to stick with Keeki.", "Name Change") if(new_name) - to_chat(src, "Your name is now \"new_name\"!") + to_chat(src, "Your name is now \"[new_name]\"!") name = new_name \ No newline at end of file