We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac13af8 commit 0bb88deCopy full SHA for 0bb88de
1 file changed
modular_meta/features/more_clothes/code/resprite_clothes_module/proc.dm
@@ -1,11 +1,16 @@
1
/obj/item
2
var/uses_advanced_reskins = FALSE
3
4
+//It could cause some issues with an any jumpsuit of sort, due to accessories being a thing in-game.
5
/obj/item/clothing/click_alt_secondary(mob/user)
6
. = ..()
7
clothing_reskin()
8
-/obj/item/clothing/proc/clothing_reskin(mob/M)
9
+/obj/item/clothing/proc/clothing_reskin()
10
+ set name = "Reskin Clothes"
11
+ set category = "Object"
12
+ set src in usr
13
+ var/mob/M = usr
14
15
if(!uses_advanced_reskins)
16
to_chat(M, "[src] has no reskins available.")
0 commit comments