diff --git a/code/game/objects/objs.dm b/code/game/objects/objs.dm
index 55dc92b2b4..fdd331a6f1 100644
--- a/code/game/objects/objs.dm
+++ b/code/game/objects/objs.dm
@@ -226,6 +226,11 @@
/obj/proc/reskin_obj(mob/M)
if(!LAZYLEN(unique_reskin))
return
+ to_chat(M, "Reskin options for [name]:")
+ for(var/V in unique_reskin)
+ var/output = icon2html(src, M, unique_reskin[V])
+ to_chat(M, "[V]: [output]")
+
var/choice = input(M,"Warning, you can only reskin [src] once!","Reskin Object") as null|anything in unique_reskin
if(!QDELETED(src) && choice && !current_skin && !M.incapacitated() && in_range(M,src))
if(!unique_reskin[choice])