diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index fcd431c33d26..5e36b9a427f3 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -256,6 +256,9 @@ cases. Override_icon_state should be a list.*/ if("classic") icon_state = new_icon_state ? new_icon_state : "c_" + icon_state item_state = new_item_state ? new_item_state : "c_" + item_state + if("urban") + icon_state = new_icon_state ? new_icon_state : "u_" + icon_state + item_state = new_item_state ? new_item_state : "u_" + item_state if(new_protection) min_cold_protection_temperature = new_protection diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 0f3fde8f3c9b..e66561cfeb56 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -904,6 +904,8 @@ Defined in conflicts.dm of the #defines folder. attach_icon = new_attach_icon ? new_attach_icon : "d_" + attach_icon if("classic") attach_icon = new_attach_icon ? new_attach_icon : "c_" + attach_icon + if("urban") + attach_icon = new_attach_icon ? new_attach_icon : "u_" + attach_icon /obj/item/attachable/scope name = "S8 4x telescopic scope" @@ -2219,6 +2221,8 @@ Defined in conflicts.dm of the #defines folder. attach_icon = new_attach_icon ? new_attach_icon : "d_" + attach_icon if("classic") attach_icon = new_attach_icon ? new_attach_icon : "c_" + attach_icon + if("urban") + attach_icon = new_attach_icon ? new_attach_icon : "u_" + attach_icon /obj/item/attachable/m4ra_barrel_custom name = "custom M4RA barrel" @@ -2245,6 +2249,8 @@ Defined in conflicts.dm of the #defines folder. attach_icon = new_attach_icon ? new_attach_icon : "d_" + attach_icon if("classic") attach_icon = new_attach_icon ? new_attach_icon : "c_" + attach_icon + if("urban") + attach_icon = new_attach_icon ? new_attach_icon : "u_" + attach_icon /obj/item/attachable/upp_rpg_breech name = "HJRA-12 Breech" diff --git a/icons/mob/humans/onmob/back.dmi b/icons/mob/humans/onmob/back.dmi index 4758f430a498..c955c16b9d47 100644 Binary files a/icons/mob/humans/onmob/back.dmi and b/icons/mob/humans/onmob/back.dmi differ diff --git a/icons/mob/humans/onmob/belt.dmi b/icons/mob/humans/onmob/belt.dmi index 8a10910930dd..b694e1bf3416 100644 Binary files a/icons/mob/humans/onmob/belt.dmi and b/icons/mob/humans/onmob/belt.dmi differ diff --git a/icons/obj/items/clothing/backpacks.dmi b/icons/obj/items/clothing/backpacks.dmi index fa03f0434fb5..a8f2eff56ce8 100644 Binary files a/icons/obj/items/clothing/backpacks.dmi and b/icons/obj/items/clothing/backpacks.dmi differ diff --git a/icons/obj/items/clothing/belts.dmi b/icons/obj/items/clothing/belts.dmi index 38ff421cfda5..4ff15377c217 100644 Binary files a/icons/obj/items/clothing/belts.dmi and b/icons/obj/items/clothing/belts.dmi differ