diff --git a/ZEreshkigal-AllinOneMod/src/player.js b/ZEreshkigal-AllinOneMod/src/player.js index d610644..9756359 100644 --- a/ZEreshkigal-AllinOneMod/src/player.js +++ b/ZEreshkigal-AllinOneMod/src/player.js @@ -100,11 +100,11 @@ class PlayerModifications { const database = DatabaseServer.tables; const types = database.bots.types for(const bots in types){ - if(types[bot].experience.standingForKill < 0 && types[bot].experience.standingForKill > 0){ - types[bot].experience.standingForKill = 0 + if(types[bots].experience.standingForKill < 0 && types[bots].experience.standingForKill > 0){ + types[bots].experience.standingForKill = 0 } - if(types[bot].experience.aggressorBonus < 0 && types[bot].experience.aggressorBonus > 0){ - types[bot].experience.aggressorBonus = 0 + if(types[bots].experience.aggressorBonus < 0 && types[bots].experience.aggressorBonus > 0){ + types[bots].experience.aggressorBonus = 0 } } }