mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
526795bacd
* Update patches to handle vineflower decompiler * update patches again to handle inlined simple lambdas * update vf again and re-apply/rebuild patches * update patches after removal of verify-merges flag * fix compile issue * remove maven local * fix some issues * address more issues * fix collision patch * use paperweight release * more fixes * update fineflower and fix patches again * add missing comment descriptor --------- Co-authored-by: Jason Penilla <11360596+jpenilla@users.noreply.github.com>
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: dawon <dawon@dawon.eu>
|
|
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 f6d6b2c7aefc39a6e6e2b0e61fd9afb334bee764..4dfbcaba4615bd761c1eb9d5994168c7202fc571 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());
|