fix AltControl fast start
This commit is contained in:
parent
a7ea1934a3
commit
1775e4e00a
1 changed files with 1 additions and 1 deletions
|
@ -55,6 +55,7 @@ public class FMLEventHandler {
|
|||
EntityPlayerSP playerLastTick = null;
|
||||
@SubscribeEvent
|
||||
public void tick(TickEvent.ClientTickEvent event) {
|
||||
BaseBand.remoteEventManager.onTick();
|
||||
if(mc.world == null || mc.player == null) {
|
||||
if(playerLastTick != null) {
|
||||
BaseBand.publish(new PlayerDestroyEvent(playerLastTick));
|
||||
|
@ -66,7 +67,6 @@ public class FMLEventHandler {
|
|||
return;
|
||||
playerLastTick = mc.player;
|
||||
BaseBand.updateKeyBinds();
|
||||
BaseBand.remoteEventManager.onTick();
|
||||
for(Feature feature : features) {
|
||||
feature.onEveryTick();
|
||||
if(feature.enabled) {
|
||||
|
|
Loading…
Add table
Reference in a new issue