Shapeshifter color selection knows default/current

This commit is contained in:
Aronai Sieyes
2020-05-21 11:59:54 -04:00
parent d8af99afc4
commit 61ae4f886c
2 changed files with 9 additions and 1 deletions
@@ -173,7 +173,8 @@ var/list/wrapped_species_by_ref = list()
last_special = world.time + 50
var/new_skin = input("Please select a new body color.", "Shapeshifter Colour") as color
var/current = RGBdec2hex(list(r_skin, g_skin, b_skin))
var/new_skin = input("Please select a new body color.", "Shapeshifter Colour", current) as null|color
if(!new_skin)
return
shapeshifter_set_colour(new_skin)