Skip to content

Commit

Permalink
rabbit
Browse files Browse the repository at this point in the history
  • Loading branch information
Efnilite committed Sep 30, 2024
1 parent 079064f commit e3b6a76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/ch/njol/skript/entity/RabbitData.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public void set(Rabbit rabbit) {
}

@Override
protected boolean match(Rabbit entity) {
return type == 0 || intFromType(entity.getRabbitType()) == type;
protected boolean match(Rabbit rabbit) {
return type == 0 || intFromType(rabbit.getRabbitType()) == type;
}

@Override
Expand Down

0 comments on commit e3b6a76

Please sign in to comment.