Removed all references which were still left regarding Tyrbot.

This commit is contained in:
2021-09-06 20:39:09 +02:00
parent 10df6c3d26
commit ac5dc38147
53 changed files with 120 additions and 133 deletions
+3 -3
View File
@@ -11,13 +11,13 @@ from core.command_param_types import Any, Const, Int
from core.decorators import instance, command
from core.dict_object import DictObject
from core.translation_service import TranslationService
from core.igncore import Tyrbot
from core.igncore import IgnCore
# noinspection PyUnusedLocal
@instance()
class AOUController:
AOU_URL = "https://www.ao-universe.com/mobile/parser.php?bot=tyrbot"
AOU_URL = "https://www.ao-universe.com/mobile/parser.php?bot=igncore"
CACHE_GROUP = "aou"
CACHE_MAX_AGE = 604800
@@ -45,7 +45,7 @@ class AOUController:
def inject(self, registry):
self.text = registry.get_instance("text")
self.bot: Tyrbot = registry.get_instance("bot")
self.bot: IgnCore = registry.get_instance("bot")
self.items_controller = registry.get_instance("items_controller")
self.cache_service = registry.get_instance("cache_service")
self.command_alias_service = registry.get_instance("command_alias_service")