Skip to content

Commit

Permalink
Fix scout stands not being able to properly scout (yogstation13#12808)
Browse files Browse the repository at this point in the history
  • Loading branch information
Absolucy authored Dec 5, 2021
1 parent d312d44 commit 37b43ca
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions yogstation/code/modules/guardian/abilities/major/scout.dm
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@
/datum/guardian_ability/major/scout/Manifest()
if(mode)
guardian.incorporeal_move = INCORPOREAL_MOVE_BASIC
var/datum/component/walk/incorp = guardian.GetComponent(/datum/component/walk)
if(incorp)
incorp.signal_enabled = TRUE

/datum/guardian_ability/major/scout/Recall()
guardian.incorporeal_move = FALSE
var/datum/component/walk/incorp = guardian.GetComponent(/datum/component/walk)
if(incorp)
incorp.signal_enabled = FALSE

0 comments on commit 37b43ca

Please sign in to comment.