From cbd640a6aa44ea33a10be9ab6ce57c1a81e8cd8a Mon Sep 17 00:00:00 2001 From: milek7 Date: Wed, 20 Feb 2019 21:47:13 +0100 Subject: [PATCH] nonglobal eventlauncher should launch individually for each client (could cause duplicated event launches, but previous behaviour is obviously wrong) --- scene.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene.cpp b/scene.cpp index ec00baa1..8887f8ba 100644 --- a/scene.cpp +++ b/scene.cpp @@ -126,7 +126,7 @@ basic_cell::update_events() { if (launcher->check_conditions() && SquareMagnitude( launcher->location() - Global.pCamera.Pos ) < launcher->dRadius) { if (launcher->check_activation()) - launch_event(launcher, false); + launch_event(launcher, true); if (launcher->check_activation_key()) launch_event(launcher, true); }