From 3f0a885c9b5340b925e4da85efe9b89009a331c3 Mon Sep 17 00:00:00 2001 From: cypress Date: Fri, 22 Sep 2023 14:39:10 -0400 Subject: [PATCH] SERVER: Add missing definition for light_spot --- source/server/entities/lights.qc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/server/entities/lights.qc b/source/server/entities/lights.qc index e5b1fd3..d84971f 100644 --- a/source/server/entities/lights.qc +++ b/source/server/entities/lights.qc @@ -96,6 +96,8 @@ void() light_torch_large_yellow = // Light with larger flame & fire sound { L_Setup(); self.frame = 1; makestatic(self); } void() light_flame_small_white = // Light with small flame & fire sound { L_Setup(); makestatic(self); } +void() light_spot = // Spotlight +{ L_Setup(); makestatic(self); } // // --------------------