Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit bf817d0

Browse files
committed
TGS Test merge #14395
2 parents e09fc0b + ab3938b commit bf817d0

File tree

159 files changed

+760
-1238
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+760
-1238
lines changed

_maps/RandomRuins/LavaRuins/lavaland_surface_clownfacility.dmm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
/area/ruin/unpowered)
6060
"an" = (
6161
/obj/structure/closet/malf,
62-
/obj/item/clothing/gloves/color/rainbow/clown,
62+
/obj/item/clothing/gloves/color/rainbow,
6363
/obj/item/clothing/mask/gas/clown_hat,
6464
/obj/item/clothing/shoes/clown_shoes,
6565
/obj/item/clothing/under/rank/clown,

_maps/RandomRuins/LavaRuins/lavaland_surface_cursedtoyshop.dmm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
/obj/item/clothing/shoes/clown_shoes,
5757
/obj/item/clothing/under/rank/clown,
5858
/obj/item/storage/backpack/clown,
59-
/obj/item/clothing/gloves/color/rainbow/clown,
59+
/obj/item/clothing/gloves/color/rainbow,
6060
/turf/open/floor/wood,
6161
/area/ruin/powered)
6262
"ak" = (

_maps/RandomRuins/StationRuins/maint/5x4/5x4_shoestore.dmm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
pixel_x = 12;
3939
pixel_y = 7
4040
},
41-
/obj/item/clothing/shoes/yogs/fire_crocs{
41+
/obj/item/clothing/shoes/fire_crocs{
4242
pixel_x = 30;
4343
pixel_y = 13
4444
},

code/__DEFINES/dye_keys.dm

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#define DYE_REGISTRY_UNDER "under"
2+
#define DYE_REGISTRY_JUMPSKIRT "jumpskirt"
3+
#define DYE_REGISTRY_GLOVES "gloves"
4+
#define DYE_REGISTRY_SNEAKERS "sneakers"
5+
#define DYE_REGISTRY_FANNYPACK "fannypack"
6+
#define DYE_REGISTRY_BEDSHEET "bedsheet"
7+
8+
#define DYE_RED "red"
9+
#define DYE_ORANGE "orange"
10+
#define DYE_YELLOW "yellow"
11+
#define DYE_GREEN "green"
12+
#define DYE_BLUE "blue"
13+
#define DYE_PURPLE "purple"
14+
#define DYE_BLACK "black"
15+
#define DYE_WHITE "white"
16+
#define DYE_RAINBOW "rainbow"
17+
#define DYE_MIME "mime"
18+
#define DYE_COSMIC "cosmic"
19+
#define DYE_QM "qm"
20+
#define DYE_LAW "law"
21+
#define DYE_CAPTAIN "captain"
22+
#define DYE_HOP "hop"
23+
#define DYE_HOS "hos"
24+
#define DYE_CE "ce"
25+
#define DYE_RD "rd"
26+
#define DYE_CMO "cmo"
27+
#define DYE_REDCOAT "redcoat"
28+
#define DYE_CLOWN "clown"

code/game/gamemodes/changeling/changeling.dm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ GLOBAL_VAR(changeling_team_objective_type) //If this is not null, we hand our th
146146
C.appearance = chosen_prof.appearance_list[slot]
147147
C.name = chosen_prof.name_list[slot]
148148
C.flags_cover = chosen_prof.flags_cover_list[slot]
149-
C.item_color = chosen_prof.item_color_list[slot]
150149
C.item_state = chosen_prof.item_state_list[slot]
151150
if(equip)
152151
user.equip_to_slot_or_del(C, GLOB.slot2slot[slot])
@@ -172,4 +171,4 @@ GLOBAL_VAR(changeling_team_objective_type) //If this is not null, we hand our th
172171
round_credits += "<br>"
173172

174173
round_credits += ..()
175-
return round_credits
174+
return round_credits

code/game/gamemodes/clown_ops/clown_weapons.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
attack_verb_on = list("slipped")
6666
clumsy_check = FALSE
6767
sharpness = SHARP_NONE
68-
item_color = "yellow"
68+
saber_color = "yellow"
6969
heat = 0
7070
light_color = "#ffff00"
7171
var/next_trombone_allowed = 0

0 commit comments

Comments
 (0)