That sounds interesting. I haven't had the chance to meet her, wonder in which camp I'll end up in
Found another small bug in combat.WeaponStatusProcs.
The last line should be:
Found another small bug in combat.WeaponStatusProcs.
Code:
//20% Stun chance
if (player.isFistOrFistWeapon() && player.weapon != weapons.KARMTOU && player.hasPerk(PerkLib.MightyFist)) stunChance += 20;
//25% Stun chance
if (player.weapon != weapons.KARMTOU && player.hasPerk(PerkLib.MightyFist)) stunChance += 25;
Code:
if (player.weapon == weapons.KARMTOU && player.hasPerk(PerkLib.MightyFist)) stunChance += 25;