Made the intent easier to read.

This commit is contained in:
harispoljo 2019-03-07 16:33:36 +01:00 committed by GitHub
parent 605601bcc6
commit 537c241e76
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -178,7 +178,7 @@ public class LoopPlugin extends PluginBase {
@Subscribe @Subscribe
public void onStatusEvent(final EventTempTargetChange ev) { public void onStatusEvent(final EventTempTargetChange ev) {
new Thread(() -> LoopPlugin.getPlugin().invoke("EventTempTargetChange", true)).start(); new Thread(() -> invoke("EventTempTargetChange", true)).start();
FabricPrivacy.getInstance().logCustom(new CustomEvent("TT_Loop_Run")); FabricPrivacy.getInstance().logCustom(new CustomEvent("TT_Loop_Run"));
} }