Skip to content

Commit

Permalink
fix weapon issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Plancke committed May 19, 2019
1 parent eb50b88 commit 030d660
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/wrappers/battlegrounds/Abilities.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ protected static function initAbilities() {
Abilities::addAbility(1, 1, new Ability("Seismic Wave", "Defender", AbilityType::DAMAGE));
Abilities::addAbility(1, 2, new Ability("Ground Slam", "Defender", AbilityType::DAMAGE));
Abilities::addAbility(1, 0, new Ability("Crippling Strike", "Revenant", AbilityType::DAMAGE));
Abilities::addAbility(1, 2, new Ability("Orbs of Life", "Revenant", AbilityType::HEAL));
Abilities::addAbility(1, 3, new Ability("Orbs of Life", "Revenant", AbilityType::HEAL));
// Paladin
Abilities::addAbility(2, 0, new Ability("Avenger's Strike", "Avenger", AbilityType::DAMAGE));
Abilities::addAbility(2, 1, new Ability("Consecrate", "Avenger", AbilityType::DAMAGE));
Expand Down
4 changes: 2 additions & 2 deletions src/wrappers/battlegrounds/PlayerClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ class PlayerClass {

protected $specs = [
PlayerClasses::MAGE => [0 => "Pyromancer", 1 => "Cryomancer", 2 => "Aquamancer"],
PlayerClasses::WARRIOR => [0 => "Berserker", 1 => "Defender", 2 => "Spiritguard"],
PlayerClasses::WARRIOR => [0 => "Berserker", 1 => "Defender", 2 => "Revenant"],
PlayerClasses::PALADIN => [0 => "Avenger", 1 => "Crusader", 2 => "Protector"],
PlayerClasses::SHAMAN => [0 => "Thunderlord", 1 => "Earthwarden", 2 => "Revenant"],
PlayerClasses::SHAMAN => [0 => "Thunderlord", 1 => "Earthwarden", 2 => "Spiritguard"],
];

/**
Expand Down

0 comments on commit 030d660

Please sign in to comment.