chore: remade FastInteract with Accesstransformers
This commit is contained in:
parent
9c296d76dc
commit
a9a232838d
2 changed files with 4 additions and 22 deletions
|
@ -13,32 +13,13 @@ import static ftbsc.bscv.Boscovicino.log;
|
|||
|
||||
@AutoService(ILoadable.class)
|
||||
public class FastInteract extends QuickModule implements ICommons {
|
||||
@Override
|
||||
protected int getDefaultKey() {
|
||||
return UNBOUND;
|
||||
}
|
||||
|
||||
Field delayField;
|
||||
|
||||
@Override
|
||||
protected void onEnabled() {
|
||||
try {
|
||||
delayField = MC.getClass().getDeclaredField("field_71467_ac");
|
||||
delayField.setAccessible(true);
|
||||
} catch (NoSuchFieldException e) {
|
||||
log("! failed accessing delay field");
|
||||
this.disable();
|
||||
}
|
||||
}
|
||||
protected int getDefaultKey() { return UNBOUND; }
|
||||
|
||||
@SubscribeEvent
|
||||
public void onTick(TickEvent.ClientTickEvent event) {
|
||||
if (MC == null) return;
|
||||
try {
|
||||
this.delayField.set(MC, 0);
|
||||
} catch (IllegalAccessException e) {
|
||||
log("! failed accessing delay field");
|
||||
this.disable();
|
||||
}
|
||||
|
||||
MC.rightClickDelay = 0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,3 +3,4 @@ public net.minecraft.client.gui.screen.Screen field_230705_e_ # children
|
|||
public net.minecraft.client.network.play.NetworkPlayerInfo field_178866_b # gameMode
|
||||
public net.minecraft.network.play.client.CPlayerPacket field_149474_g # onGround
|
||||
public net.minecraft.client.multiplayer.PlayerController func_78750_j()V # ensureHasSentCarriedItem()
|
||||
public net.minecraft.client.Minecraft field_71467_ac # rightClickDelay
|
||||
|
|
Loading…
Reference in a new issue