From 2b0ec5b6af6e1e94d94042165b82ba89b88e9228 Mon Sep 17 00:00:00 2001 From: Kitt Mustang Date: Tue, 6 Oct 2020 19:11:58 -0400 Subject: [PATCH] Fix banzai tiles flicker. See merge request morningstar/Arcturus-Community!312 --- README.md | 2 +- .../eu/habbo/threading/runnables/BattleBanzaiTilesFlicker.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8a4a8145..364c2985 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Arcturus Morningstar is released under the [GNU General Public License v3](https ## Versions ## ![image](https://img.shields.io/badge/VERSION-2.4.0-success.svg?style=for-the-badge&logo=appveyor) -![image](https://img.shields.io/badge/STATUS-UNSTABLE-red.svg?style=for-the-badge&logo=appveyor) +![image](https://img.shields.io/badge/STATUS-STABLE-blue.svg?style=for-the-badge&logo=appveyor) Compiled Download: https://git.krews.org/morningstar/Arcturus-Community/releases diff --git a/src/main/java/com/eu/habbo/threading/runnables/BattleBanzaiTilesFlicker.java b/src/main/java/com/eu/habbo/threading/runnables/BattleBanzaiTilesFlicker.java index 77eb02ef..0993c1b3 100644 --- a/src/main/java/com/eu/habbo/threading/runnables/BattleBanzaiTilesFlicker.java +++ b/src/main/java/com/eu/habbo/threading/runnables/BattleBanzaiTilesFlicker.java @@ -41,7 +41,7 @@ public class BattleBanzaiTilesFlicker implements Runnable { this.room.sendComposer(new ItemsDataUpdateComposer(this.items).compose()); - if (this.count == 5) { + if (this.count == 9) { for (HabboItem item : this.room.getRoomSpecialTypes().getItemsOfType(InteractionBattleBanzaiSphere.class)) { item.setExtradata("0"); this.room.updateItemState(item);