From 841271dbd6ef8fcc0fd9ebb70e71529eca3dc779 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Sat, 5 Oct 2024 12:30:06 -0700 Subject: [PATCH] slight nerf fake humans --- src/core/configuration/DefaultConfig.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 995fef196..80af01d9f 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -86,7 +86,7 @@ export class DefaultConfig implements Config { mag *= .8 } if (attacker.type() == PlayerType.FakeHuman && defender.type() == PlayerType.Bot) { - mag *= .6 + mag *= .8 } } @@ -150,7 +150,7 @@ export class DefaultConfig implements Config { // console.log(`to add ${toAdd}`) if (player.type() == PlayerType.FakeHuman) { - toAdd *= 1.1 + toAdd *= 1.0 } if (player.type() == PlayerType.Bot) { toAdd *= .7