What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

A recent change to flametongue/direwolfalpha/etc.

sepefeet

New Member
Joined
Jan 20, 2016
Messages
122
Reaction score
1
I was diff'ing 263 with 254 and noticed this change:
Code:
                if (p.ownMinions.Count > [B]1[/B] && (m.handcard.card.name == CardDB.cardName.direwolfalpha || m.handcard.card.name == CardDB.cardName.flametonguetotem || m.handcard.card.name == CardDB.cardName.stormwindchampion || m.handcard.card.name == CardDB.cardName.raidleader || m.handcard.card.name == CardDB.cardName.fallenhero)) retval += 10;
Code:
                if (p.ownMinions.Count > [B]2[/B] && (m.handcard.card.name == CardDB.cardName.direwolfalpha || m.handcard.card.name == CardDB.cardName.flametonguetotem || m.handcard.card.name == CardDB.cardName.stormwindchampion || m.handcard.card.name == CardDB.cardName.raidleader)) retval += 10;

IMO the previous requirement of 2+ minions to get this bonus was fine, I don't see any reason for it to need 3+ minions when Dire Wolf Alpha and Flametongue Totem only buff 2 minions. Lots of little stuff could be changed with this but I think reverting it to ">1" would be good enough.
 
Back
Top