All color inputs use current color as default choice

Went through all the color inputs and made the "default" argument the current color of what is being selected.
This commit is contained in:
ChuckTheJittai
2018-01-21 13:07:35 -05:00
parent b69b1e9a4e
commit 02033f1756
10 changed files with 19 additions and 19 deletions
@@ -3,7 +3,7 @@
name = "color pin"
/datum/integrated_io/color/ask_for_pin_data(mob/user)
var/new_data = input("Please select a color.","[src] color writing") as null|color
var/new_data = input("Please select a color.","[src] color writing") as color|null
if(holder.check_interactivity(user) )
to_chat(user, "<span class='notice'>You input a <font color='[new_data]'>new color</font> into the pin.</span>")
write_data_to_pin(new_data)