Skip to content

Commit

Permalink
fix spelling in hologram api
Browse files Browse the repository at this point in the history
  • Loading branch information
SaltyAimbOtter committed Dec 29, 2023
1 parent 18e0754 commit 25162ec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ private void updateHologram(final NPCHologram npcHologram) {
npcHologram.holograms().add(newHologram);
updateHologram(newHologram);
} else {
if (hologram.isDisable()) {
if (hologram.isDisabled()) {
hologram.enable();
}
hologram.move(location);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public interface BetonHologram {
*
* @return true if disabled, false otherwise
*/
boolean isDisable();
boolean isDisabled();

/**
* Disables the hologram without deleting it
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public void delete() {
}

@Override
public boolean isDisable() {
public boolean isDisabled() {
return hologram.isDisabled();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public void delete() {
}

@Override
public boolean isDisable() {
public boolean isDisabled() {
return disabled;
}

Expand Down

0 comments on commit 25162ec

Please sign in to comment.