diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b0779f..0d76280 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ ### Fixes - fix unexpectedErrorOccurred message: changed val to var (this was causing warning messages and no changes after /reload) - /changepassword now notifies premium accounts that they can't change their password +- fix accountMigrationSuccess multification: not being sent to the player ### Config **Messages** config: diff --git a/navauth-velocity/src/main/kotlin/pl/spcode/navauth/velocity/command/user/PremiumAccountCommand.kt b/navauth-velocity/src/main/kotlin/pl/spcode/navauth/velocity/command/user/PremiumAccountCommand.kt index 581ee9e..b018c54 100644 --- a/navauth-velocity/src/main/kotlin/pl/spcode/navauth/velocity/command/user/PremiumAccountCommand.kt +++ b/navauth-velocity/src/main/kotlin/pl/spcode/navauth/velocity/command/user/PremiumAccountCommand.kt @@ -73,6 +73,6 @@ constructor( } userService.migrateToPremium(user, mojangProfile.uuid) - multification.create(sender) { it.multification.accountMigrationSuccess } + multification.create(sender) { it.multification.accountMigrationSuccess }.send() } }