diff options
author | Haru <haru@dotalux.com> | 2018-04-22 19:23:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-22 19:23:41 +0200 |
commit | 01902e6393f6a750ee320e63f9092a981ce72696 (patch) | |
tree | aeb6e99d0cd15aea20c998f3d873060b5aab1686 /conf | |
parent | 7b097da8b433ea3b768b6c306c12801f7ddef0a5 (diff) | |
parent | 940fce6309d2b99f27b00aa6738d40fe2219d12f (diff) | |
download | hercules-01902e6393f6a750ee320e63f9092a981ce72696.tar.gz hercules-01902e6393f6a750ee320e63f9092a981ce72696.tar.bz2 hercules-01902e6393f6a750ee320e63f9092a981ce72696.tar.xz hercules-01902e6393f6a750ee320e63f9092a981ce72696.zip |
Merge pull request #2007 from Jedzkie/PincodeUpdate
Pincode Update
Diffstat (limited to 'conf')
-rw-r--r-- | conf/char/char-server.conf | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/conf/char/char-server.conf b/conf/char/char-server.conf index 47506e324..7cdcc7bdb 100644 --- a/conf/char/char-server.conf +++ b/conf/char/char-server.conf @@ -228,8 +228,33 @@ char_configuration: { // Default: 3 // Maximum allowed by clientside: 3 max_tries: 3 - } + // Whether or not to refuse pincodes that are blacklisted + // Default: true + check_blacklisted: true + + // Blacklisted pincodes + blacklist: [ + "0000", + "1111", + "2222", + "3333", + "4444", + "5555", + "6666", + "7777", + "8888", + "9999", + "0123", + "1234", + "2345", + "3456", + "4567", + "5678", + "6789", + "7890" + ] + } } import: "conf/import/char-server.conf" |