Rename the "any color" paint bucket to "adaptive paint"

This commit is contained in:
Tad Hardesty
2018-05-27 20:21:27 -07:00
parent f1f67eaad1
commit a606618fd2
+3 -3
View File
@@ -51,12 +51,12 @@
/obj/item/paint/anycolor
gender= PLURAL
name = "any color"
gender = PLURAL
name = "adaptive paint"
icon_state = "paint_neutral"
/obj/item/paint/anycolor/attack_self(mob/user)
var/t1 = input(user, "Please select a color:", "Locking Computer", null) in list( "red", "blue", "green", "yellow", "violet", "black", "white")
var/t1 = input(user, "Please select a color:", "[src]", null) in list( "red", "blue", "green", "yellow", "violet", "black", "white")
if ((user.get_active_held_item() != src || user.stat || user.restrained()))
return
switch(t1)