diff --git a/scripts/bsSpaz.py b/scripts/bsSpaz.py index 6f9c916785a1dc84954ebde3961d3ac997586293..8637e8686f9e8b68eaa6cca7ef919bcf252cdfb3 100644 --- a/scripts/bsSpaz.py +++ b/scripts/bsSpaz.py @@ -309,12 +309,10 @@ class SpazFactory(object): # lets load some basic rules (allows them to be tweaked from the # master server) self.shieldDecayRate = bsInternal._getAccountMiscReadVal('rsdr', 10.0) - self.punchCooldown = bsInternal._getAccountMiscReadVal('rpc', 40) - self.punchCooldownGloves = \ - bsInternal._getAccountMiscReadVal('rpcg', 30) - self.punchPowerScale = bsInternal._getAccountMiscReadVal('rpp', 10.2) - self.punchPowerScaleGloves = \ - bsInternal._getAccountMiscReadVal('rppg', 20.4) + self.punchCooldown = 40 + self.punchCooldownGloves = 30 + self.punchPowerScale = 10 + self.punchPowerScaleGloves = 20 self.maxShieldSpilloverDamage = \ bsInternal._getAccountMiscReadVal('rsms', 500)