jap → ja

you really should never use this unfortunate abbreviation, use ja or jpn instead (see https://en.wikipedia.org/wiki/Jap)
This commit is contained in:
13xforever 2018-02-25 17:29:17 +05:00
parent 8a349b90f2
commit 360ae6617e
2 changed files with 6 additions and 6 deletions

View File

@ -62,7 +62,7 @@ directions = {
}
regions = {
"j": ("j", "jap", "japan", "JPN"),
"j": ("j", "ja", "japan", "JPN"),
"u": ("u", "us", "america", "USA"),
"e": ("e", "eu", "europe", "EU"),
"a": ("a", "asia", "ch", "china", "CHN"),

10
bot.py
View File

@ -16,7 +16,7 @@ from bot_utils import get_code
from database import Moderator, init
from math_parse import NumericStringParser
from math_utils import limit_int
from phases import LogAnalyzer
from log_analyzer import LogAnalyzer
from stream_handlers import stream_text_log, stream_gzip_decompress
bot = Bot(command_prefix="!")
@ -218,11 +218,11 @@ async def top(ctx: Context, *args):
Gets the x (default 10) top oldest/newest updated games
Example usage:
!top old 10
!top new 10 jap
!top new 10 ja
!top old 10 all
!top new 10 jap playable
!top new 10 jap playable bluray
!top new 10 jap loadable psn
!top new 10 ja playable
!top new 10 ja playable bluray
!top new 10 ja loadable psn
To see all filters do !filters
"""
request = ApiRequest(ctx.message.author)