hasSecondStrike()
Zerker,
I was having some trouble with your new hasSecondStrike() method. For some reason, normal combat damage does not happen when using this method. If I replace them with the old (not so elegant) :
I was having some trouble with your new hasSecondStrike() method. For some reason, normal combat damage does not happen when using this method. If I replace them with the old (not so elegant) :
- Code: Select all
if(!att.get(i).hasFirstStrike() || (att.get(i).hasFirstStrike() && att.get(i).hasDoubleStrike()) )
- Code: Select all
if(!attacking.get(i).hasFirstStrike() || (attacking.get(i).hasFirstStrike() && attacking.get(i).hasDoubleStrike() )){
