]> git.seodisparate.com - TurnBasedMinecraftMod/commitdiff
Minor change to debug log notes
authorStephen Seo <seo.disparate@gmail.com>
Sat, 27 Oct 2018 07:35:29 +0000 (16:35 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Sat, 27 Oct 2018 07:35:29 +0000 (16:35 +0900)
src/main/java/com/seodisparate/TurnBasedMinecraft/common/Battle.java

index 496028d5dc1ac354f3577b39f615b35716447497..8f9cb784dbb9cd4cf877902d7c18fc31a5e524dd 100644 (file)
@@ -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
                                 {