forget to add : in gui and bug fixing
This commit is contained in:
parent
7f26cd3634
commit
86ec615bd6
2 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ public class Lilase {
|
||||||
if (tickAmount % 20 == 0) Utils.checkForDungeon();
|
if (tickAmount % 20 == 0) Utils.checkForDungeon();
|
||||||
if (tickAmount % (20 * AUCTION_HOUSE_DELAY) == 0) auctionHouse.getItem();
|
if (tickAmount % (20 * AUCTION_HOUSE_DELAY) == 0) auctionHouse.getItem();
|
||||||
if (tickAmount % 2400 == 0) ConfigUtils.checkWebhookAndAPI();
|
if (tickAmount % 2400 == 0) ConfigUtils.checkWebhookAndAPI();
|
||||||
AuctionHouse.flipper.switchStates();
|
if (AuctionHouse.flipper != null) AuctionHouse.flipper.switchStates();
|
||||||
if (mc.currentScreen instanceof GuiDisconnected) {
|
if (mc.currentScreen instanceof GuiDisconnected) {
|
||||||
if (waitTime >= (RECONNECT_DELAY * 20)) {
|
if (waitTime >= (RECONNECT_DELAY * 20)) {
|
||||||
waitTime = 0;
|
waitTime = 0;
|
||||||
|
|
|
@ -164,7 +164,7 @@ public class SniperFlipperEvents {
|
||||||
"Z: " + Math.round(PlayerUtils.mc.thePlayer.posZ) + "\n" +
|
"Z: " + Math.round(PlayerUtils.mc.thePlayer.posZ) + "\n" +
|
||||||
time + "\n" +
|
time + "\n" +
|
||||||
"FPS: " + Minecraft.getDebugFPS() + "\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());
|
TextRenderer.drawString(lines, 0, 0, 1.5, GUI_COLOR.getRGB());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue