Skip to content

Commit

Permalink
fix: disabled pet riding for the creaking
Browse files Browse the repository at this point in the history
#BlameMojang
  • Loading branch information
brainsynder-Dev committed Feb 26, 2025
1 parent 6c61fd0 commit 2e31a10
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions plugin-core/src/simplepets/brainsynder/impl/PetOwner.java
Original file line number Diff line number Diff line change
Expand Up @@ -625,6 +625,14 @@ public boolean setPetVehicle(PetType type, boolean vehicle) {
return false;
}
Player player = getPlayer();
if (type ==PetType.CREAKING) {
player.sendMessage("""
§cRiding the Creaking Pet is disabled due to Mojang -.-
§cPlease see:
§7https://tiny.bsdevelopment.org/creaking-ride-issue
""");
return false;
}

if (hasPetVehicle() && (player.getVehicle() != null)) {
// Remove previous vehicle
Expand Down

0 comments on commit 2e31a10

Please sign in to comment.