1
This commit is contained in:
parent
7e15615efc
commit
2f1028cabe
@ -25,6 +25,6 @@ const GS_SECRET_KEYS = array(
|
|||||||
);
|
);
|
||||||
const NOTICE_CHANNEL_ID = 'world_room_1';
|
const NOTICE_CHANNEL_ID = 'world_room_1';
|
||||||
const CIRCUIT_MATCH_SERVER_LIST = array(
|
const CIRCUIT_MATCH_SERVER_LIST = array(
|
||||||
17
|
9
|
||||||
);
|
);
|
||||||
define('PRESENT_FREE_ITEM', 1);
|
define('PRESENT_FREE_ITEM', 1);
|
||||||
|
@ -19,12 +19,7 @@ class AAWheel(object):
|
|||||||
],
|
],
|
||||||
'response': [
|
'response': [
|
||||||
_common.RspHead(),
|
_common.RspHead(),
|
||||||
['info', [
|
['info', _common.WheelUser(), '用户名'],
|
||||||
['name', '', '用户名'],
|
|
||||||
['avatar', '', '头像'],
|
|
||||||
['score', '', '积分'],
|
|
||||||
['hourly_earnings', 0, '每小时收益'],
|
|
||||||
], '用户名'],
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -1954,3 +1954,14 @@ class HashRateGoods(object):
|
|||||||
['max_num', 0, '最大数量(-1不限购)'],
|
['max_num', 0, '最大数量(-1不限购)'],
|
||||||
['count_down', 0, '倒计时(单位秒,只有已售罄才有效)'],
|
['count_down', 0, '倒计时(单位秒,只有已售罄才有效)'],
|
||||||
]
|
]
|
||||||
|
|
||||||
|
class WheelUser(object):
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
self.fields = [
|
||||||
|
['name', '', '用户名'],
|
||||||
|
['avatar', '', '头像'],
|
||||||
|
['score', '', '积分'],
|
||||||
|
['hourly_earnings', 0, '每小时收益'],
|
||||||
|
['dice', 0, '骰子数'],
|
||||||
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user