From 8e5acdd2efacd8135db9f29eb3b01b77892fc701 Mon Sep 17 00:00:00 2001 From: RikuTheKiller <88713943+RikuTheKiller@users.noreply.github.com> Date: Sun, 14 Jan 2024 12:09:47 +0200 Subject: [PATCH] Fixes round event controller pirate spawns (#80936) ## About The Pull Request Free GBP, I think? It only spawns in space, but it only spawns on a planet... hold up that's never. ## Why It's Good For The Game Bugfix good. ## Changelog :cl: fix: Fixed round event controller pirate spawns. /:cl: Co-authored-by: RikuLeinonenVuoksi --- code/modules/antagonists/pirate/pirate_event.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/pirate/pirate_event.dm b/code/modules/antagonists/pirate/pirate_event.dm index a26a143a94a..f3c6655a275 100644 --- a/code/modules/antagonists/pirate/pirate_event.dm +++ b/code/modules/antagonists/pirate/pirate_event.dm @@ -15,7 +15,7 @@ map_flags = EVENT_SPACE_ONLY /datum/round_event_control/pirates/preRunEvent() - if (!SSmapping.is_planetary()) + if (SSmapping.is_planetary()) return EVENT_CANT_RUN return ..()