Wrong type of smoke marker added. Feature removed. Look into smoke effect instead.

This commit is contained in:
iTracerFacer
2025-12-04 16:17:12 -06:00
parent 0b1e435c5c
commit 19e5e17041
2 changed files with 1 additions and 4 deletions
Binary file not shown.
+1 -4
View File
@@ -290,9 +290,6 @@ local function SetupWarehouseEventHandlers()
for _, warehouse in ipairs(allWarehouses) do
if warehouse then
warehouse:HandleEvent(EVENTS.Dead, function(event)
-- Add large smoke effect on destroyed warehouse
warehouse:Smoke(SMOKECOLOR.Red)
-- Remove markers for this warehouse from both coalitions
local name = warehouse:GetName()
for _, coalition in ipairs({1, 2}) do
@@ -304,7 +301,7 @@ local function SetupWarehouseEventHandlers()
end
end
env.info(string.format("[DGB PLUGIN] Warehouse %s destroyed - smoke applied, markers removed", name))
env.info(string.format("[DGB PLUGIN] Warehouse %s destroyed - markers removed", name))
end)
end
end