From cf53aa8e67970b3240923858d451d04007d33134 Mon Sep 17 00:00:00 2001 From: BadAtThisGame <79063506+BadAtThisGame302@users.noreply.github.com> Date: Tue, 12 Dec 2023 12:32:51 +0200 Subject: [PATCH] Fixes LV Engi and Research not showning up correctly on the tacmap (#5172) # About the pull request Title basically, Engie and Research did not show up in the correct colours on the tacmap # Explain why it's good for the game Bugs bad # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: fix: fixed Engie not showing up an Engie Area on tacmap on LV-624 fix: Fixed Research not showing up as a Research Area on tacmap on LV-624 /:cl: Co-authored-by: Jeff Watchson --- code/game/area/LV624.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/area/LV624.dm b/code/game/area/LV624.dm index 505387f8e52b..613703a0be6e 100644 --- a/code/game/area/LV624.dm +++ b/code/game/area/LV624.dm @@ -382,10 +382,12 @@ /area/lv624/lazarus/engineering name = "\improper Engineering" icon_state = "engine_smes" + minimap_color = MINIMAP_AREA_ENGI /area/lv624/lazarus/comms name = "\improper Communications Relay" icon_state = "tcomsatcham" + minimap_color = MINIMAP_AREA_ENGI /area/lv624/lazarus/secure_storage name = "\improper Secure Storage" @@ -400,6 +402,7 @@ /area/lv624/lazarus/research name = "\improper Research Lab" icon_state = "toxlab" + minimap_color = MINIMAP_AREA_RESEARCH /area/lv624/lazarus/fitness name = "\improper Fitness Room"