forget to add : in gui and bug fixing

This commit is contained in:
NK 2023-02-25 23:33:07 +00:00
parent 7f26cd3634
commit 86ec615bd6
2 changed files with 2 additions and 2 deletions

View file

@ -65,7 +65,7 @@ public class Lilase {
if (tickAmount % 20 == 0) Utils.checkForDungeon();
if (tickAmount % (20 * AUCTION_HOUSE_DELAY) == 0) auctionHouse.getItem();
if (tickAmount % 2400 == 0) ConfigUtils.checkWebhookAndAPI();
AuctionHouse.flipper.switchStates();
if (AuctionHouse.flipper != null) AuctionHouse.flipper.switchStates();
if (mc.currentScreen instanceof GuiDisconnected) {
if (waitTime >= (RECONNECT_DELAY * 20)) {
waitTime = 0;

View file

@ -164,7 +164,7 @@ public class SniperFlipperEvents {
"Z: " + Math.round(PlayerUtils.mc.thePlayer.posZ) + "\n" +
time + "\n" +
"FPS: " + Minecraft.getDebugFPS() + "\n" +
"Auctions Sniped" + Lilase.auctionHouse.getAuctionsSniped();
"Auctions Sniped: " + Lilase.auctionHouse.getAuctionsSniped();
TextRenderer.drawString(lines, 0, 0, 1.5, GUI_COLOR.getRGB());
}
}