From ae50fcdf8b4867a662f41275cc214a01eb8f60ec Mon Sep 17 00:00:00 2001 From: nashmuhandes Date: Wed, 29 Sep 2021 17:00:10 +0800 Subject: [PATCH] Don't let LightProbes spawn in the world. We don't want unnecessary actors ticking in the map. --- wadsrc/static/zscript/actors/shared/lightprobe.zs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/wadsrc/static/zscript/actors/shared/lightprobe.zs b/wadsrc/static/zscript/actors/shared/lightprobe.zs index c356c2244..b51253f73 100644 --- a/wadsrc/static/zscript/actors/shared/lightprobe.zs +++ b/wadsrc/static/zscript/actors/shared/lightprobe.zs @@ -1,14 +1,9 @@ class LightProbe : Actor native { - Default - { - +NOINTERACTION - } - States { Spawn: - LPRO A -1; + LPRO A 0; Stop; } }