1
0
Fork 0

Fixed typo with game_cfg/game_config

This resulted in an exception on Plost and earlier, leading to games not actually working.
This commit is contained in:
EmmyHeart 2023-10-09 06:35:14 +00:00
parent 7fc5544c15
commit bad106ceba
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ class ChuniBase:
"gameMessageList": [{
"id": 1,
"type": 1,
"message": f"Welcome to {self.core_cfg.server.name} network!" if not self.game_config.server.news_msg else self.game_config.server.news_msg,
"message": f"Welcome to {self.core_cfg.server.name} network!" if not self.game_cfg.server.news_msg else self.game_cfg.server.news_msg,
"startDate": "2017-12-05 07:00:00.0",
"endDate": "2099-12-31 00:00:00.0"
}]