From 8d577f48327002f13504ee28a8fcf8fd7c71e301 Mon Sep 17 00:00:00 2001 From: Alpha Date: Mon, 14 Nov 2022 00:14:22 +0900 Subject: [PATCH] Fix upstream --- patches/server/0001-Pufferfish-Server-Changes.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/server/0001-Pufferfish-Server-Changes.patch b/patches/server/0001-Pufferfish-Server-Changes.patch index eea8ff0..1060854 100644 --- a/patches/server/0001-Pufferfish-Server-Changes.patch +++ b/patches/server/0001-Pufferfish-Server-Changes.patch @@ -4209,7 +4209,7 @@ index ebe65474a4a05ff1637d7f37ebcfe690af59def5..dd45d6464e095dfa82c569d198f5e42d + // Pufferfish start + Entity entity = this.entity; + if (entity instanceof LivingEntity livingEntity) { -+ return livingEntity.canStandOnFluid(state) && !state.getType().isSame(state.getType()); ++ return livingEntity.canStandOnFluid(state) && !stateAbove.getType().isSame(state.getType()); + } + return false; + // Pufferfish end