From: Stephen Seo Date: Sat, 27 Oct 2018 07:35:29 +0000 (+0900) Subject: Minor change to debug log notes X-Git-Tag: 1.8~6 X-Git-Url: https://git.seodisparate.com/stephenseo/static/annotated.html?a=commitdiff_plain;h=044ee7d8602b58584a42ca43e0097a5611830187;p=TurnBasedMinecraftMod Minor change to debug log notes --- 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 {