Add prefix/suffix toggle for playerlist. Resolves #771

This commit adds two new configurable options:
- `add-prefix-in-playerlist`: enable prefix in playerlist
- `add-suffix-in-playerlist`: enable suffix in playerlist

These were added to prevent very long names in the playerlist.
This commit is contained in:
Ali Moghnieh 2016-07-28 17:17:26 +01:00
parent 30d5fbdf8d
commit 63b5cb9ec7
No known key found for this signature in database
GPG key ID: F09D3A1BAF2E6D70
4 changed files with 31 additions and 3 deletions

View file

@ -269,4 +269,8 @@ public interface ISettings extends IConf {
boolean isPastebinCreateKit();
boolean isAllowBulkBuySell();
boolean isAddingPrefixInPlayerlist();
boolean isAddingSuffixInPlayerlist();
}