[MIRROR] Fixes artwork not being able to be named (#2275)

* Fixes artwork not being able to be named (#55475)

* whoops!

* Update artstuff.dm

* Fixes artwork not being able to be named

Co-authored-by: tralezab <40974010+tralezab@users.noreply.github.com>
This commit is contained in:
SkyratBot
2020-12-22 00:08:50 +01:00
committed by GitHub
co-authored by tralezab
parent 168d7c93b4
commit 06e175b051
+1 -1
View File
@@ -185,7 +185,7 @@
/obj/item/canvas/proc/try_rename(mob/user)
var/new_name = stripped_input(user,"What do you want to name the painting?")
if(painting_name != initial(painting_name) && new_name && user.canUseTopic(src,BE_CLOSE))
if(new_name != painting_name && new_name && user.canUseTopic(src,BE_CLOSE))
painting_name = new_name
SStgui.update_uis(src)