Skip to content

Commit

Permalink
Fix default fluid-pushable status
Browse files Browse the repository at this point in the history
  • Loading branch information
fullwall committed Dec 14, 2023
1 parent 80cadb2 commit fcaa4dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/citizensnpcs/api/npc/AbstractNPC.java
Expand Up @@ -311,7 +311,7 @@ public boolean isProtected() {

@Override
public boolean isPushableByFluids() {
return data().get(NPC.Metadata.FLUID_PUSHABLE, isProtected());
return data().get(NPC.Metadata.FLUID_PUSHABLE, !isProtected());
}

@Override
Expand Down

0 comments on commit fcaa4dd

Please sign in to comment.