fix wrong var name

This commit is contained in:
Andre_601 2020-12-29 18:54:39 +01:00 committed by GitHub
parent 15e22ea115
commit 27d8ae03e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ public class JoinExample extends JavaPlugin implements Listener {
*/
joinText = PlaceholderAPI.setPlaceholders(event.getPlayer(), joinText);
event.setJoinMessage(withPlaceholdersSet);
event.setJoinMessage(joinText);
}
}
```