Fixed character.giveJobItems being in the wrong order due to the merge

This commit is contained in:
EvilFactory
2024-10-26 13:51:56 -03:00
parent 0cf0fce4d9
commit 0daaaf9fca
@@ -1815,8 +1815,8 @@ namespace Barotrauma
return; return;
} }
} }
GameMain.LuaCs.Hook.Call("character.giveJobItems", this, spawnPoint, isPvPMode);
info.Job?.GiveJobItems(this, isPvPMode, spawnPoint); info.Job?.GiveJobItems(this, isPvPMode, spawnPoint);
GameMain.LuaCs.Hook.Call("character.giveJobItems", this, spawnPoint, isPvPMode);
} }
public void GiveIdCardTags(WayPoint spawnPoint, bool createNetworkEvent = false) public void GiveIdCardTags(WayPoint spawnPoint, bool createNetworkEvent = false)