aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Custom
diff options
context:
space:
mode:
authorF1F7Y <64418963+F1F7Y@users.noreply.github.com>2023-01-06 23:22:19 +0100
committerGitHub <noreply@github.com>2023-01-06 23:22:19 +0100
commitffac4617f33d3a2f595276e7d393e0957d68ae06 (patch)
tree217faa9b746cde6969a91cc27257b0dfc78846a4 /Northstar.Custom
parent4e83b351a8581ec04cd7ecd54588514eb6207ba6 (diff)
downloadNorthstarMods-ffac4617f33d3a2f595276e7d393e0957d68ae06.tar.gz
NorthstarMods-ffac4617f33d3a2f595276e7d393e0957d68ae06.zip
[FW]: Add missing callback for milita harvester (#561)v1.12.0-rc3
Add missing callback
Diffstat (limited to 'Northstar.Custom')
-rw-r--r--Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fw.nut3
1 files changed, 2 insertions, 1 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fw.nut b/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fw.nut
index dd2b32000..48163b978 100644
--- a/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fw.nut
+++ b/Northstar.Custom/mod/scripts/vscripts/gamemodes/_gamemode_fw.nut
@@ -1710,6 +1710,7 @@ void function FW_createHarvester()
fw_harvesterMlt.harvester.Minimap_SetZOrder( MINIMAP_Z_OBJECT )
fw_harvesterMlt.harvester.Minimap_SetCustomState( eMinimapObject_prop_script.FD_HARVESTER )
AddEntityCallback_OnDamaged( fw_harvesterMlt.harvester, OnHarvesterDamaged )
+ AddEntityCallback_OnPostDamaged( fw_harvesterMlt.harvester, OnHarvesterPostDamaged )
// mlt havester settings
// don't set this, or sonar pulse will try to find it and failed to set highlight
@@ -2266,4 +2267,4 @@ string function GetTeamAliveTurretCount_ReturnString( int team )
/////////////////////////////////////
///// BatteryPort Functions End /////
-///////////////////////////////////// \ No newline at end of file
+/////////////////////////////////////