-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'meta-drone-fix' of https://github.com/DexeeXI/Monkestat…
…ion2.0 into meta-drone-fix
- Loading branch information
Showing
3 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
author: "Absolucy" | ||
delete-after: True | ||
changes: | ||
- qol: "Battlecruiser Allies now get the Syndicate faction, allowing them to go back with the battlecruiser crew to their base without being gunned down by turrets." |
9 changes: 9 additions & 0 deletions
9
monkestation/code/modules/antagonists/battlecruiser/battlecruiser.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/datum/antagonist/battlecruiser/ally/apply_innate_effects(mob/living/mob_override) | ||
. = ..() | ||
var/mob/living/target = mob_override || owner.current | ||
target.faction |= ROLE_SYNDICATE | ||
|
||
/datum/antagonist/battlecruiser/ally/remove_innate_effects(mob/living/mob_override) | ||
. = ..() | ||
var/mob/living/target = mob_override || owner.current | ||
target.faction -= ROLE_SYNDICATE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters