Remove debug

This commit is contained in:
fullwall 2020-06-29 18:02:30 +08:00
parent 0293ac17df
commit 0ee8c63a66
2 changed files with 1 additions and 1 deletions

View File

@ -41,6 +41,7 @@ public class AdminCommands {
public void reload(CommandContext args, CommandSender sender, NPC npc) throws CommandException {
Messaging.sendTr(sender, Messages.CITIZENS_RELOADING);
try {
plugin.reload();
Messaging.sendTr(sender, Messages.CITIZENS_RELOADED);
} catch (NPCLoadException ex) {

View File

@ -357,7 +357,6 @@ public class PlayerNavigation extends NavigationAbstract {
} else if (this.c != null && this.c.f() < this.c.e()) {
Vec3D vec3D1 = b();
Vec3D vec3D2 = this.c.a(this.a, this.c.f());
System.out.println(vec3D1 + " " + vec3D2);
if (vec3D1.y > vec3D2.y && !this.a.isOnGround() && MathHelper.floor(vec3D1.x) == MathHelper.floor(vec3D2.x)
&& MathHelper.floor(vec3D1.z) == MathHelper.floor(vec3D2.z))
this.c.c(this.c.f() + 1);