From 12143cbb503b0883d187b9c7b95d5b311316cb65 Mon Sep 17 00:00:00 2001 From: illuc Date: Mon, 2 Mar 2026 21:21:22 +0200 Subject: [PATCH] Added picking up unconscious and offline players --- .../neuralgiacore/events/PickUpUnconsciousPlayerEvent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/xyz/illuc/neuralgiacore/events/PickUpUnconsciousPlayerEvent.java b/src/main/java/xyz/illuc/neuralgiacore/events/PickUpUnconsciousPlayerEvent.java index 1d67b5c..666c545 100644 --- a/src/main/java/xyz/illuc/neuralgiacore/events/PickUpUnconsciousPlayerEvent.java +++ b/src/main/java/xyz/illuc/neuralgiacore/events/PickUpUnconsciousPlayerEvent.java @@ -38,7 +38,7 @@ public class PickUpUnconsciousPlayerEvent { } - } else if (target.getType() == NeuralgiaCoreMod.GHOST.get()) { + } else if (target.getType() == NeuralgiaCoreMod.GHOST.get() && source.isShiftKeyDown()) { target.startRiding(source); }