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

View File

@@ -1815,8 +1815,8 @@ namespace Barotrauma
return;
}
}
GameMain.LuaCs.Hook.Call("character.giveJobItems", this, spawnPoint, isPvPMode);
info.Job?.GiveJobItems(this, isPvPMode, spawnPoint);
GameMain.LuaCs.Hook.Call("character.giveJobItems", this, spawnPoint, isPvPMode);
}
public void GiveIdCardTags(WayPoint spawnPoint, bool createNetworkEvent = false)