diff options
author | RoyalBlue1 <realEmail@veryRealURL.com> | 2022-10-20 03:01:05 +0200 |
---|---|---|
committer | RoyalBlue1 <realEmail@veryRealURL.com> | 2022-10-20 03:01:05 +0200 |
commit | 4d48eb81ef99c54210a8914fadf3f58cd295fb59 (patch) | |
tree | 0b088b9d4c5e82f8a767912443130c9fc28ccb14 /Northstar.CustomServers/mod/scripts/vscripts | |
parent | 3c00b69762435ba3c753495b191c379508fd5003 (diff) | |
download | NorthstarMods-4d48eb81ef99c54210a8914fadf3f58cd295fb59.tar.gz NorthstarMods-4d48eb81ef99c54210a8914fadf3f58cd295fb59.zip |
Fix calling wrong function
Diffstat (limited to 'Northstar.CustomServers/mod/scripts/vscripts')
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut index b768b984..9ec2bbf2 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut +++ b/Northstar.CustomServers/mod/scripts/vscripts/gamemodes/_gamemode_fd.nut @@ -123,7 +123,7 @@ void function GamemodeFD_Init() AddCallback_OnRoundEndCleanup( FD_NPCCleanup ) AddCallback_OnClientConnected( GamemodeFD_InitPlayer ) AddCallback_OnPlayerGetsNewPilotLoadout( FD_OnPlayerGetsNewPilotLoadout ) - SetPostMatchCallback(gameWonMedals) + SetCallback_RunPostmatch(gameWonMedals) //Damage Callbacks AddDamageByCallback( "player", FD_DamageByPlayerCallback) |