diff --git a/plugin/src/main/java/com/denizenscript/denizen/objects/LocationTag.java b/plugin/src/main/java/com/denizenscript/denizen/objects/LocationTag.java index 782c9bf731..af8de0eea5 100644 --- a/plugin/src/main/java/com/denizenscript/denizen/objects/LocationTag.java +++ b/plugin/src/main/java/com/denizenscript/denizen/objects/LocationTag.java @@ -996,6 +996,9 @@ public static void registerTags() { // @description // Returns the location of the block this location is on, // i.e. returns a location without decimals or direction. + // Note that you almost never actually need this tag. This does not "get the block", this just rounds coordinates down. + // If you have this in a script, it is more likely to be a mistake than actually needed. + // Consider using <@link tag LocationTag.round_down> instead. // --> registerTag("block", (attribute, object) -> { return new LocationTag(object.getWorld(), object.getBlockX(), object.getBlockY(), object.getBlockZ()); diff --git a/plugin/src/main/java/com/denizenscript/denizen/scripts/commands/entity/ShootCommand.java b/plugin/src/main/java/com/denizenscript/denizen/scripts/commands/entity/ShootCommand.java index e39d7e97c8..79f5d482e4 100644 --- a/plugin/src/main/java/com/denizenscript/denizen/scripts/commands/entity/ShootCommand.java +++ b/plugin/src/main/java/com/denizenscript/denizen/scripts/commands/entity/ShootCommand.java @@ -408,7 +408,7 @@ else if (lastLocation != null && lastVelocity != null) { } }; - task.runTaskTimer(DenizenAPI.getCurrentInstance(), 0, 2); + task.runTaskTimer(DenizenAPI.getCurrentInstance(), 1, 2); } @EventHandler