Skip to content

Commit

Permalink
Fixed some spelling mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
d0by1 committed Nov 12, 2023
1 parent e92b9bd commit e4c979c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/eu/decentsoftware/holograms/api/DHAPI.java
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ public static void setHologramLine(HologramLine line, String content) throws Ill
Validate.notNull(line);
Validate.notNull(content);

// If the new content is the same as current content, don't do anyting.
// If the new content is the same as current content, don't do anything.
if (line.getContent().equals(content)) {
return;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void onQuit(PlayerQuitEvent e) {
public void onRespawn(PlayerRespawnEvent e) {
Player player = e.getPlayer();
// TODO: All holograms (and entities) get hidden on the client, when the client
// teleports or respawns. This only seems to be happening on some client verions
// teleports or respawns. This only seems to be happening on some client versions
// so we need to find which versions are affected and only re-show the holograms
// to those clients (or on those server versions).
// -
Expand Down

0 comments on commit e4c979c

Please sign in to comment.