Fix reset tag without notification (#2405)

This commit is contained in:
jie65535 2023-10-17 13:41:24 +08:00 committed by GitHub
parent 770cd62370
commit b7a9d28f02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,6 +114,8 @@ public final class SetSceneTagCommand implements CommandHandler {
.computeIfAbsent(sceneTag.getSceneId(), k -> new HashSet<>()); .computeIfAbsent(sceneTag.getSceneId(), k -> new HashSet<>());
targetPlayer.getSceneTags().get(sceneTag.getSceneId()).add(sceneTag.getId()); targetPlayer.getSceneTags().get(sceneTag.getSceneId()).add(sceneTag.getId());
}); });
this.setSceneTags(targetPlayer);
} }
private void setSceneTags(Player targetPlayer) { private void setSceneTags(Player targetPlayer) {