Skip to content

Commit

Permalink
Fix lines disappearing. (Revert experimental change)
Browse files Browse the repository at this point in the history
  • Loading branch information
d0by1 committed Sep 3, 2022
1 parent 6c5e5f1 commit 6ecf316
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
defaultTasks 'build'

group 'eu.decentsoftware.holograms'
version '2.7.0'
version '2.7.1'
description 'Lightweight yet very powerful hologram plugin with many features and configuration options.'

repositories {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ public boolean show(Player player, int pageIndex) {
} else {
// We need to run the task later on older versions as, if we don't, it causes issues with some holograms *randomly* becoming invisible.
// I *think* this is from despawning and spawning the entities (with the same ID) in the same tick.
S.async(() -> showPageTo(player, page, pageIndex), 0L);
S.sync(() -> showPageTo(player, page, pageIndex), 0L);
}
return true;
}
Expand Down

0 comments on commit 6ecf316

Please sign in to comment.