Add Ring of Fire to PetManager.java

This commit is contained in:
Oliver 2022-04-08 15:30:26 +00:00
parent c32754d1dd
commit 6484d7f563

View File

@ -62,6 +62,7 @@ public class PetManager {
this.put(35, new ActionWings()); this.put(35, new ActionWings());
this.put(36, new ActionBreatheFire()); this.put(36, new ActionBreatheFire());
this.put(38, new ActionTorch()); this.put(38, new ActionTorch());
this.put(42, new ActionRingOfFire());
this.put(43, new ActionEat()); this.put(43, new ActionEat());
this.put(46, new ActionBreed()); this.put(46, new ActionBreed());
@ -519,4 +520,4 @@ public class PetManager {
return false; return false;
} }
} }