mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 19:52:37 -06:00
ctime
This commit is contained in:
parent
e1de301f2a
commit
7ef12e079a
2 changed files with 2 additions and 2 deletions
2
dependencies/astron/dclass/stride.dc
vendored
2
dependencies/astron/dclass/stride.dc
vendored
|
@ -27,7 +27,7 @@ dclass Account {
|
||||||
uint32 ACCOUNT_AV_SET[] required db;
|
uint32 ACCOUNT_AV_SET[] required db;
|
||||||
uint32 ESTATE_ID db;
|
uint32 ESTATE_ID db;
|
||||||
AvatarPendingDel ACCOUNT_AV_SET_DEL[] db;
|
AvatarPendingDel ACCOUNT_AV_SET_DEL[] db;
|
||||||
uint64 CREATED db;
|
string CREATED db;
|
||||||
string LAST_LOGIN db;
|
string LAST_LOGIN db;
|
||||||
string ACCOUNT_ID db;
|
string ACCOUNT_ID db;
|
||||||
uint16 ACCESS_LEVEL db;
|
uint16 ACCESS_LEVEL db;
|
||||||
|
|
|
@ -329,7 +329,7 @@ class LoginAccountFSM(OperationFSM):
|
||||||
'ACCOUNT_AV_SET': [0] * 6,
|
'ACCOUNT_AV_SET': [0] * 6,
|
||||||
'ESTATE_ID': 0,
|
'ESTATE_ID': 0,
|
||||||
'ACCOUNT_AV_SET_DEL': [],
|
'ACCOUNT_AV_SET_DEL': [],
|
||||||
'CREATED': time.time(),
|
'CREATED': time.ctime(),
|
||||||
'LAST_LOGIN': time.ctime(),
|
'LAST_LOGIN': time.ctime(),
|
||||||
'LAST_LOGIN_TS': time.time(),
|
'LAST_LOGIN_TS': time.time(),
|
||||||
'ACCOUNT_ID': str(self.userId),
|
'ACCOUNT_ID': str(self.userId),
|
||||||
|
|
Loading…
Reference in a new issue