Skip to content

Commit

Permalink
Fixed the combat hologram projector making escorts hostile.
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbens committed Apr 17, 2024
1 parent ffae680 commit 87af6d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
@@ -1,5 +1,6 @@
* 0.11.5 (unreleased)
* Fixed FLF-Pirate map not providing jump information
* Fixed the combat hologram projector making escorts hostile

* 0.11.4
* More guards against divides by zero in autonav
Expand Down
1 change: 1 addition & 0 deletions dat/outfits/utility/combat_hologram_projector.lua
Expand Up @@ -10,6 +10,7 @@ local function turnon( p, po )
-- Make sure pilot has a target
local t = p:target()
if t == nil then return false end
if t:leader()==p then return false end -- Can't use on fighters

-- Set outfit state
mem.timer = active
Expand Down

0 comments on commit 87af6d4

Please sign in to comment.