From bccf76a1d9d522c82d2f35baefc12db6eacd7a4d Mon Sep 17 00:00:00 2001 From: Arturlang <24881678+Arturlang@users.noreply.github.com> Date: Thu, 7 Aug 2025 18:40:30 +0300 Subject: [PATCH] [NO GBP] ghosts can't buy heretic powers (#92464) ## About The Pull Request well. here it happened, as foretold. whoops. ## Why It's Good For The Game yeah uh. fuck ## Changelog :cl: fix: ghosts can't buy heretic powers /:cl: (cherry picked from commit 8d777d9d535237a59f309ad2d3e9c4f28cbee7e8) --- code/modules/antagonists/_common/antag_datum.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/_common/antag_datum.dm b/code/modules/antagonists/_common/antag_datum.dm index d019153763c..45f6f58cb35 100644 --- a/code/modules/antagonists/_common/antag_datum.dm +++ b/code/modules/antagonists/_common/antag_datum.dm @@ -124,7 +124,7 @@ GLOBAL_LIST_EMPTY(antagonists) /datum/antagonist/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) . = ..() if(. || ui.user != owner.current) - return FALSE + return TRUE switch(action) if("change_objectives") submit_player_objective()