Skip to content

Commit

Permalink
player flag cache typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Feb 5, 2021
1 parent 8ab2599 commit 08c4fda
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Expand Up @@ -53,7 +53,6 @@ public class EntityDeathScriptEvent extends BukkitScriptEvent implements Listene
// @Determine
// ElementTag to change the death message.
// "NO_DROPS" to specify that any drops should be removed.
// "NO_DROPS_OR_XP" to specify that any drops or XP orbs should be removed.
// "NO_XP" to specify that any XP orbs should be removed.
// ListTag(ItemTag) to specify new items to be dropped.
// ElementTag(Number) to specify the new amount of XP to be dropped.
Expand Down
Expand Up @@ -71,6 +71,7 @@ public PushCommand() {
//
// @Tags
// <EntityTag.velocity>
// <entry[saveName].pushed_entities> returns the list of pushed entities.
//
// @Usage
// Use to launch an arrow straight towards a target.
Expand Down
Expand Up @@ -71,7 +71,7 @@ public static void cleanCache() {
}
}
for (UUID id : toClearCache) {
toClearCache.remove(id);
secondaryPlayerFlagTrackerCache.remove(id);
}
long timeNow = System.currentTimeMillis();
for (Map.Entry<UUID, CachedPlayerFlag> entry : playerFlagTrackerCache.entrySet()) {
Expand Down

0 comments on commit 08c4fda

Please sign in to comment.