From a62f829416c6d2c99c17063c4375b640c5cd635c Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Tue, 6 Feb 2024 10:45:38 +0300 Subject: [PATCH] [MIRROR] Fix Ore Vent's well being on improper plane (#711) (#1776) * Fix Ore Vent's well being on improper plane (#81181) ## About The Pull Request Removed explicit plane set to `GAME_PLANE` and `ABOVE_MOB_LAYER` thus fixing issue when well was drawn on improper plane, possibly the ghost one. ## Why It's Good For The Game This PR fixes a visual bug. ![Pic](https://github.com/tgstation/tgstation/assets/137328283/6d867b25-8aec-4f36-ae69-b2b1a918d908) ## Changelog :cl: fix: fixed ore vent's well being drawn over ash storm. /:cl: * Fix Ore Vent's well being on improper plane --------- Co-authored-by: NovaBot <154629622+NovaBot13@users.noreply.github.com> Co-authored-by: Interception&? <137328283+intercepti0n@users.noreply.github.com> --- code/game/objects/structures/lavaland/ore_vent.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/lavaland/ore_vent.dm b/code/game/objects/structures/lavaland/ore_vent.dm index 46e8b7ec41d..72cdd7d4ba5 100644 --- a/code/game/objects/structures/lavaland/ore_vent.dm +++ b/code/game/objects/structures/lavaland/ore_vent.dm @@ -84,7 +84,7 @@ SSore_generation.processed_vents += src icon_state = icon_state_tapped update_appearance(UPDATE_ICON_STATE) - add_overlay(mutable_appearance('icons/obj/mining_zones/terrain.dmi', "well", ABOVE_MOB_LAYER, src, ABOVE_MOB_LAYER)) + add_overlay(mutable_appearance('icons/obj/mining_zones/terrain.dmi', "well", ABOVE_MOB_LAYER)) return ..() /obj/structure/ore_vent/Destroy() @@ -269,7 +269,7 @@ user_id_card.registered_account.mining_points += point_reward_val user_id_card.registered_account.bank_card_talk("You have been awarded [point_reward_val] mining points for your efforts.") node.pre_escape() //Visually show the drone is done and flies away. - add_overlay(mutable_appearance('icons/obj/mining_zones/terrain.dmi', "well", ABOVE_MOB_LAYER, src, GAME_PLANE)) + add_overlay(mutable_appearance('icons/obj/mining_zones/terrain.dmi', "well", ABOVE_MOB_LAYER)) /** * Called when the ore vent is tapped by a scanning device.