More sharp check for outdated entries.

This commit is contained in:
asofold 2013-01-23 02:52:37 +01:00
parent 7af0957935
commit e4c355bc48

View File

@ -39,7 +39,7 @@ public class HookInstaBreak extends AbstractHook implements ConfigurableHook, Li
tick = TickTask.getTick();
}
public boolean isOutdated(final int tick){
return tick > this.tick;
return tick != this.tick;
}
}