This commit is contained in:
aozhiwei 2024-10-28 11:23:10 +08:00
parent 7e15615efc
commit 2f1028cabe
3 changed files with 13 additions and 7 deletions

View File

@ -25,6 +25,6 @@ const GS_SECRET_KEYS = array(
);
const NOTICE_CHANNEL_ID = 'world_room_1';
const CIRCUIT_MATCH_SERVER_LIST = array(
17
9
);
define('PRESENT_FREE_ITEM', 1);

View File

@ -19,12 +19,7 @@ class AAWheel(object):
],
'response': [
_common.RspHead(),
['info', [
['name', '', '用户名'],
['avatar', '', '头像'],
['score', '', '积分'],
['hourly_earnings', 0, '每小时收益'],
], '用户名'],
['info', _common.WheelUser(), '用户名'],
]
},
{

View File

@ -1954,3 +1954,14 @@ class HashRateGoods(object):
['max_num', 0, '最大数量(-1不限购)'],
['count_down', 0, '倒计时(单位秒,只有已售罄才有效)'],
]
class WheelUser(object):
def __init__(self):
self.fields = [
['name', '', '用户名'],
['avatar', '', '头像'],
['score', '', '积分'],
['hourly_earnings', 0, '每小时收益'],
['dice', 0, '骰子数'],
]