diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 56263f1c2..0b7a516e6 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -11,6 +11,7 @@ body: - 1.16.x - 1.18.x - 1.19.x + - 1.20.x validations: required: true - type: input diff --git a/projects/common-api/src/main/java/dan200/computercraft/api/turtle/ITurtleAccess.java b/projects/common-api/src/main/java/dan200/computercraft/api/turtle/ITurtleAccess.java index 761b8b6be..3ef11c7ab 100644 --- a/projects/common-api/src/main/java/dan200/computercraft/api/turtle/ITurtleAccess.java +++ b/projects/common-api/src/main/java/dan200/computercraft/api/turtle/ITurtleAccess.java @@ -75,7 +75,9 @@ public interface ITurtleAccess { * @param f The subframe fraction. * @return A vector containing the floating point co-ordinates at which the turtle resides. * @see #getVisualYaw(float) + * @deprecated Will be removed in 1.20. */ + @Deprecated(forRemoval = true) Vec3 getVisualPosition(float f); /** @@ -84,7 +86,9 @@ public interface ITurtleAccess { * @param f The subframe fraction. * @return The yaw the turtle is facing. * @see #getVisualPosition(float) + * @deprecated Will be removed in 1.20. */ + @Deprecated(forRemoval = true) float getVisualYaw(float f); /**