From d68629fc809fb34ccd0405345a5bfaa818747c8d Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Sat, 24 Feb 2018 11:41:16 -0500 Subject: [PATCH] VS: MA override removal changes --- .../mob/living/simple_animal/vore/shadekin/shadekin.dm | 2 -- code/modules/vore/fluffstuff/guns/nsfw.dm | 4 ---- 2 files changed, 6 deletions(-) diff --git a/code/modules/mob/living/simple_animal/vore/shadekin/shadekin.dm b/code/modules/mob/living/simple_animal/vore/shadekin/shadekin.dm index 7748ca2254..5594a6f1bc 100644 --- a/code/modules/mob/living/simple_animal/vore/shadekin/shadekin.dm +++ b/code/modules/mob/living/simple_animal/vore/shadekin/shadekin.dm @@ -225,8 +225,6 @@ eyeimage = image(icon,null,eye_icon_state) var/mutable_appearance/ma = new(src) - ma.plane = plane - ma.layer = layer ma.overlays += tailimage ma.overlays += eyeimage appearance = ma diff --git a/code/modules/vore/fluffstuff/guns/nsfw.dm b/code/modules/vore/fluffstuff/guns/nsfw.dm index 9ed2b96600..4d8a529d04 100644 --- a/code/modules/vore/fluffstuff/guns/nsfw.dm +++ b/code/modules/vore/fluffstuff/guns/nsfw.dm @@ -114,8 +114,6 @@ /obj/item/weapon/gun/projectile/nsfw/update_icon() var/mutable_appearance/ma = new(src) - ma.plane = plane //This is especially weird as new(src) should take these, but it doens't? - ma.layer = layer //Instead it ends up on FLOAT_PLANE update_charge() if(!chambered) @@ -179,8 +177,6 @@ /obj/item/ammo_magazine/nsfw_mag/update_icon() var/mutable_appearance/ma = new(src) - ma.plane = plane //This is especially weird as new(src) should take these, but it doens't? - ma.layer = layer //Instead it ends up on FLOAT_PLANE if(!stored_ammo.len) ma.overlays = list()