remove useless line
This commit is contained in:
parent
dd2f59ec09
commit
7f26cd3634
1 changed files with 4 additions and 10 deletions
|
@ -62,17 +62,11 @@ public class Lilase {
|
||||||
public void onTick(TickEvent.ClientTickEvent event) throws IOException {
|
public void onTick(TickEvent.ClientTickEvent event) throws IOException {
|
||||||
if (mc.thePlayer == null || event.phase != TickEvent.Phase.START) return;
|
if (mc.thePlayer == null || event.phase != TickEvent.Phase.START) return;
|
||||||
tickAmount++;
|
tickAmount++;
|
||||||
if (tickAmount % 20 == 0) {
|
if (tickAmount % 20 == 0) Utils.checkForDungeon();
|
||||||
Utils.checkForDungeon();
|
if (tickAmount % (20 * AUCTION_HOUSE_DELAY) == 0) auctionHouse.getItem();
|
||||||
}
|
if (tickAmount % 2400 == 0) ConfigUtils.checkWebhookAndAPI();
|
||||||
if (tickAmount % (20 * AUCTION_HOUSE_DELAY) == 0) {
|
|
||||||
auctionHouse.getItem();
|
|
||||||
}
|
|
||||||
if (tickAmount % 2400 == 0) {
|
|
||||||
ConfigUtils.checkWebhookAndAPI();
|
|
||||||
}
|
|
||||||
AuctionHouse.flipper.switchStates();
|
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;
|
||||||
FMLClientHandler.instance().connectToServer(new GuiMultiplayer(new GuiMainMenu()), new ServerData(" ", "mc.hypixel.net", false));
|
FMLClientHandler.instance().connectToServer(new GuiMultiplayer(new GuiMainMenu()), new ServerData(" ", "mc.hypixel.net", false));
|
||||||
|
|
Loading…
Reference in a new issue