From 9944dc70d0a4f0c8c602b1912b830bc892ec898a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Aguilera=20Puerto?= Date: Wed, 2 Sep 2020 18:34:40 +0200 Subject: [PATCH] Fix random events not playing --- .../EntitySystems/StationEvents/StationEventSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Server/GameObjects/EntitySystems/StationEvents/StationEventSystem.cs b/Content.Server/GameObjects/EntitySystems/StationEvents/StationEventSystem.cs index dd02a67a76..6ff103b01b 100644 --- a/Content.Server/GameObjects/EntitySystems/StationEvents/StationEventSystem.cs +++ b/Content.Server/GameObjects/EntitySystems/StationEvents/StationEventSystem.cs @@ -237,6 +237,7 @@ namespace Content.Server.GameObjects.EntitySystems.StationEvents else { CurrentEvent = stationEvent; + CurrentEvent.Startup(); } }