mirror of
https://github.com/TotalFreedomMC/TF-ProjectKorra.git
synced 2025-02-14 04:47:51 +00:00
Merge remote-tracking branch 'refs/remotes/ProjectKorra/master'
This commit is contained in:
commit
61004060d6
2 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ public class Element {
|
|||
|
||||
private String name;
|
||||
|
||||
private Element(String name) {
|
||||
protected Element(String name) {
|
||||
this.name = name;
|
||||
ALL_ELEMENTS.put(name.toLowerCase(), this);
|
||||
}
|
||||
|
|
|
@ -127,7 +127,7 @@ public class ComboManager {
|
|||
iceBulletLeft.add(new AbilityInformation("IceBlast", ClickType.LEFT_CLICK));
|
||||
COMBO_ABILITIES.put("IceBulletLeftClick", new ComboAbilityInfo("IceBulletLeftClick", iceBulletLeft, WaterCombo.class));
|
||||
ArrayList<AbilityInformation> iceBulletRight = new ArrayList<>();
|
||||
iceBulletRight.add(new AbilityInformation("IceBlast", ClickType.RIGHT_CLICK));
|
||||
iceBulletRight.add(new AbilityInformation("IceBlast", ClickType.RIGHT_CLICK_BLOCK));
|
||||
COMBO_ABILITIES.put("IceBulletRightClick", new ComboAbilityInfo("IceBulletRightClick", iceBulletRight, WaterCombo.class));
|
||||
|
||||
ArrayList<AbilityInformation> immobilize = new ArrayList<>();
|
||||
|
|
Loading…
Reference in a new issue