Commits

md_5 authored 48b88ed202a
SPIGOT-2656: HumanEntity#isHandRaised()Z
No tags

src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java

Modified
372 372 }
373 373
374 374 public void closeInventory() {
375 375 getHandle().closeInventory();
376 376 }
377 377
378 378 public boolean isBlocking() {
379 379 return getHandle().isBlocking();
380 380 }
381 381
382 + @Override
383 + public boolean isHandRaised() {
384 + return getHandle().cx(); // PAIL: rename
385 + }
386 +
382 387 public boolean setWindowProperty(InventoryView.Property prop, int value) {
383 388 return false;
384 389 }
385 390
386 391 public int getExpToLevel() {
387 392 return getHandle().getExpToLevel();
388 393 }
389 394 }

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut