From 044ee7d8602b58584a42ca43e0097a5611830187 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Sat, 27 Oct 2018 16:35:29 +0900 Subject: [PATCH] Minor change to debug log notes --- .../java/com/seodisparate/TurnBasedMinecraft/common/Battle.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/com/seodisparate/TurnBasedMinecraft/common/Battle.java b/src/main/java/com/seodisparate/TurnBasedMinecraft/common/Battle.java index 496028d..8f9cb78 100644 --- a/src/main/java/com/seodisparate/TurnBasedMinecraft/common/Battle.java +++ b/src/main/java/com/seodisparate/TurnBasedMinecraft/common/Battle.java @@ -936,6 +936,7 @@ public class Battle next.yaw = yawDirection; next.pitch = pitchDirection; } + debugLog += " adding task..."; next.entity.getServer().addScheduledTask(() -> { // have player look at attack target ((EntityPlayerMP)nextEntity).connection.setPlayerLocation(nextEntity.posX, nextEntity.posY, nextEntity.posZ, yawDirection, pitchDirection); @@ -957,6 +958,7 @@ public class Battle } } }); + debugLog += "...task added"; } else {