aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0801-Add-Sneaking-API-for-Entities.patch
diff options
context:
space:
mode:
authorRiley Park <[email protected]>2024-05-15 17:06:59 -0700
committerGitHub <[email protected]>2024-05-15 17:06:59 -0700
commitf17519338bc589c045e0b32bfc37e048b23544d5 (patch)
treee50182ec698b4a9de8f366f485ee089b1901bbd9 /patches/server/0801-Add-Sneaking-API-for-Entities.patch
parent3fc93581bb876e8149b2ca423375a98f5ca12d27 (diff)
downloadPaper-f17519338bc589c045e0b32bfc37e048b23544d5.tar.gz
Paper-f17519338bc589c045e0b32bfc37e048b23544d5.zip
Expose server build information (#10729)
* Expose server build information * squash patches * final tweaks --------- Co-authored-by: Jake Potrebic <[email protected]> Co-authored-by: masmc05 <[email protected]>
Diffstat (limited to 'patches/server/0801-Add-Sneaking-API-for-Entities.patch')
-rw-r--r--patches/server/0801-Add-Sneaking-API-for-Entities.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/patches/server/0801-Add-Sneaking-API-for-Entities.patch b/patches/server/0801-Add-Sneaking-API-for-Entities.patch
new file mode 100644
index 0000000000..47d08328f7
--- /dev/null
+++ b/patches/server/0801-Add-Sneaking-API-for-Entities.patch
@@ -0,0 +1,29 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: dawon <[email protected]>
+Date: Wed, 19 Oct 2022 23:31:53 +0200
+Subject: [PATCH] Add Sneaking API for Entities
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
+index 92c80776273f6be43b40686c7ab7dd7371b1c06f..365281dfc0308c5db0c72b56208d9b87be0e955e 100644
+--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftEntity.java
+@@ -872,6 +872,18 @@ public abstract class CraftEntity implements org.bukkit.entity.Entity {
+ return Pose.values()[this.getHandle().getPose().ordinal()];
+ }
+
++ // Paper start
++ @Override
++ public void setSneaking(boolean sneak) {
++ this.getHandle().setShiftKeyDown(sneak);
++ }
++
++ @Override
++ public boolean isSneaking() {
++ return this.getHandle().isShiftKeyDown();
++ }
++ // Paper end
++
+ @Override
+ public SpawnCategory getSpawnCategory() {
+ return CraftSpawnCategory.toBukkit(this.getHandle().getType().getCategory());