From 4d93c1922316ad64c7e7d9e2a40cd141f1425bf0 Mon Sep 17 00:00:00 2001 From: Ereshkigal Date: Sun, 26 Sep 2021 18:32:36 +0200 Subject: [PATCH] Oops, little typo --- ZEreshkigal-AllinOneMod/src/player.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 } } }