diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index 60b131b487..d09c20c2a9 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -161,6 +161,8 @@ /obj/item/weapon/storage/box/blanks name = "box of blank shells" desc = "It has a picture of a gun and several warning symbols on the front." + icon_state = "blankshot_box" + item_state = "syringe_kit" New() ..() @@ -175,6 +177,8 @@ /obj/item/weapon/storage/box/beanbags name = "box of beanbag shells" desc = "It has a picture of a gun and several warning symbols on the front.
WARNING: Live ammunition. Misuse may result in serious injury or death." + icon_state = "beanshot_box" + item_state = "syringe_kit" New() ..() @@ -189,6 +193,8 @@ /obj/item/weapon/storage/box/shotgunammo name = "box of shotgun slugs" desc = "It has a picture of a gun and several warning symbols on the front.
WARNING: Live ammunition. Misuse may result in serious injury or death." + icon_state = "lethalshellshot_box" + item_state = "syringe_kit" New() ..() @@ -203,6 +209,8 @@ /obj/item/weapon/storage/box/shotgunshells name = "box of shotgun shells" desc = "It has a picture of a gun and several warning symbols on the front.
WARNING: Live ammunition. Misuse may result in serious injury or death." + icon_state = "lethalslug_box" + item_state = "syringe_kit" New() ..() @@ -217,6 +225,8 @@ /obj/item/weapon/storage/box/flashshells name = "box of illumination shells" desc = "It has a picture of a gun and several warning symbols on the front.
WARNING: Live ammunition. Misuse may result in serious injury or death." + icon_state = "illumshot_box" + item_state = "syringe_kit" New() ..() @@ -231,6 +241,8 @@ /obj/item/weapon/storage/box/stunshells name = "box of stun shells" desc = "It has a picture of a gun and several warning symbols on the front.
WARNING: Live ammunition. Misuse may result in serious injury or death." + icon_state = "stunshot_box" + item_state = "syringe_kit" New() ..() @@ -245,6 +257,8 @@ /obj/item/weapon/storage/box/practiceshells name = "box of practice shells" desc = "It has a picture of a gun and several warning symbols on the front.
WARNING: Live ammunition. Misuse may result in serious injury or death." + icon_state = "blankshot_box" + item_state = "syringe_kit" New() ..() diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi index 88d832c1d6..5dff42780f 100644 Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ