Skip to content

Commit

Permalink
Fixes heretic ascension (fulpstation#1087)
Browse files Browse the repository at this point in the history
* fixed 👍

* Reverts refactor
  • Loading branch information
Momo8289 authored Dec 28, 2023
1 parent 23ba398 commit 44bfbee
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Removing self-assigning objectives until we have a policy on that
/datum/antagonist/New()
. = ..()
..()
can_assign_self_objectives = FALSE

6 changes: 6 additions & 0 deletions fulp_modules/Z_edits/antag_edits/heretic_ascension_fix.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// Removes the check for can_assign_self_objectives, since that'll always be FALSE here
/datum/antagonist/heretic/can_ascend()
for(var/datum/objective/must_be_done as anything in objectives)
if(!must_be_done.check_completion())
return FALSE
return TRUE
3 changes: 2 additions & 1 deletion tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -5976,7 +5976,6 @@
#include "fulp_modules\_defines\signals.dm"
#include "fulp_modules\_defines\species_defines.dm"
#include "fulp_modules\_defines\traits.dm"
#include "fulp_modules\features\antagonists\antag_datum.dm"
#include "fulp_modules\features\antagonists\antag_tips\antag_tip_integration.dm"
#include "fulp_modules\features\antagonists\antag_tips\preference.dm"
#include "fulp_modules\features\antagonists\bloodsuckers\code\assets\bloodsucker_assets.dm"
Expand Down Expand Up @@ -6149,8 +6148,10 @@
#include "fulp_modules\Z_edits\job_edits.dm"
#include "fulp_modules\Z_edits\nightmare_edit.dm"
#include "fulp_modules\Z_edits\upstream_bot.dm"
#include "fulp_modules\Z_edits\antag_edits\antag_datum.dm"
#include "fulp_modules\Z_edits\antag_edits\changeling_spiders.dm"
#include "fulp_modules\Z_edits\antag_edits\cult_stun.dm"
#include "fulp_modules\Z_edits\antag_edits\heretic_ascension_fix.dm"
#include "fulp_modules\Z_edits\emote_edits\cooldowns.dm"
#include "fulp_modules\Z_edits\emote_edits\scream.dm"
#include "fulp_modules\Z_edits\erp_removal\double_beds.dm"
Expand Down

0 comments on commit 44bfbee

Please sign in to comment.