From 6484d7f563959d406eeaed8df2cd2f0e2efb038e Mon Sep 17 00:00:00 2001 From: Oliver Date: Fri, 8 Apr 2022 15:30:26 +0000 Subject: [PATCH] Add Ring of Fire to PetManager.java --- src/main/java/com/eu/habbo/habbohotel/pets/PetManager.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/eu/habbo/habbohotel/pets/PetManager.java b/src/main/java/com/eu/habbo/habbohotel/pets/PetManager.java index 8294707d..d2a4013a 100644 --- a/src/main/java/com/eu/habbo/habbohotel/pets/PetManager.java +++ b/src/main/java/com/eu/habbo/habbohotel/pets/PetManager.java @@ -62,6 +62,7 @@ public class PetManager { this.put(35, new ActionWings()); this.put(36, new ActionBreatheFire()); this.put(38, new ActionTorch()); + this.put(42, new ActionRingOfFire()); this.put(43, new ActionEat()); this.put(46, new ActionBreed()); @@ -519,4 +520,4 @@ public class PetManager { return false; } -} \ No newline at end of file +}