diff --git a/src/main/kotlin/network/warzone/mars/tag/commands/TagsCommand.kt b/src/main/kotlin/network/warzone/mars/tag/commands/TagsCommand.kt index 636c611..4428c4f 100644 --- a/src/main/kotlin/network/warzone/mars/tag/commands/TagsCommand.kt +++ b/src/main/kotlin/network/warzone/mars/tag/commands/TagsCommand.kt @@ -58,6 +58,7 @@ class TagsCommand { PlayerFeature.setActiveTag(context.uuid.toString(), null) }.thenRun { profile.activeTagId = null + refresh() } } else if (profile.tagIds.contains(tag._id)) { Mars.asyncAsFuture { @@ -67,10 +68,10 @@ class TagsCommand { ) }.thenRun { profile.activeTagId = tag._id + refresh() } } - refresh() } } }