diff --git a/code/modules/projectiles/guns/ballistic/pistol.dm b/code/modules/projectiles/guns/ballistic/pistol.dm index 800bb379003..c5e7b9f1c94 100644 --- a/code/modules/projectiles/guns/ballistic/pistol.dm +++ b/code/modules/projectiles/guns/ballistic/pistol.dm @@ -33,7 +33,12 @@ /obj/item/weapon/gun/ballistic/automatic/pistol/deagle/update_icon() ..() - icon_state = "[initial(icon_state)][magazine ? "" : "-e"]" + if(magazine) + cut_overlays() + add_overlay("deagle_magazine") + else + cut_overlays() + icon_state = "[initial(icon_state)][chambered ? "" : "-e"]" /obj/item/weapon/gun/ballistic/automatic/pistol/deagle/gold desc = "A gold plated desert eagle folded over a million times by superior martian gunsmiths. Uses .50 AE ammo." diff --git a/config/admins.txt b/config/admins.txt index 0f8baac0452..c3b53f93d4e 100644 --- a/config/admins.txt +++ b/config/admins.txt @@ -125,3 +125,4 @@ Cyberboss = Game Master PJB3005 = Game Master Sweaterkittens = Game Master Feemjmeem = Game Master +JStheguy = Game Master diff --git a/icons/obj/ammo.dmi b/icons/obj/ammo.dmi index 0e5bb3a9feb..87d4e5ed22f 100644 Binary files a/icons/obj/ammo.dmi and b/icons/obj/ammo.dmi differ diff --git a/icons/obj/guns/projectile.dmi b/icons/obj/guns/projectile.dmi index 40fd874a620..a9075d0ff25 100644 Binary files a/icons/obj/guns/projectile.dmi and b/icons/obj/guns/projectile.dmi differ