From c7ac4af5416948ce3eaf57a74b27d5561a552ef4 Mon Sep 17 00:00:00 2001 From: KrewsOrg Date: Thu, 2 May 2019 00:13:01 +0100 Subject: [PATCH] Credit, Points and Pixel Scheduler now updates on :update_config --- .../com/eu/habbo/habbohotel/GameEnvironment.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/main/java/com/eu/habbo/habbohotel/GameEnvironment.java b/src/main/java/com/eu/habbo/habbohotel/GameEnvironment.java index 62cd3d63..af05965b 100644 --- a/src/main/java/com/eu/habbo/habbohotel/GameEnvironment.java +++ b/src/main/java/com/eu/habbo/habbohotel/GameEnvironment.java @@ -190,4 +190,16 @@ public class GameEnvironment { return this.pollManager; } + + public CreditsScheduler getCreditsScheduler() { + return this.creditsScheduler; + } + + public PixelScheduler getPixelScheduler() { + return this.pixelScheduler; + } + + public PointsScheduler getPointsScheduler() { + return this.pointsScheduler; + } }