mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-21 17:34:46 -05:00
Fix TS2737 on SDVX plugin
TS2737: BigInt literals are not available when targeting lower than ES2020.
This commit is contained in:
parent
5797c2ca97
commit
55008b575c
|
|
@ -67,7 +67,7 @@ export function register() {
|
|||
MultiRoute('entry_e', true);
|
||||
MultiRoute('exception', true);
|
||||
R.Route('eventlog.write', (_, __, send) => send.object({
|
||||
gamesession: K.ITEM('s64', 1n),
|
||||
gamesession: K.ITEM('s64', BigInt(1)),
|
||||
logsendflg: K.ITEM('s32', 0),
|
||||
logerrlevel: K.ITEM('s32', 0),
|
||||
evtidnosendflg: K.ITEM('s32', 0)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user