From c1cad3573da20433e13009c685b2a593aaf2ed1f Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Sun, 17 Dec 2023 00:41:44 -0300 Subject: [PATCH] fix(basic.gblib): Allow MERGE keyword in storage #380. @othonlima --- packages/basic.gblib/services/GBVMService.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/basic.gblib/services/GBVMService.ts b/packages/basic.gblib/services/GBVMService.ts index 8ee585cd..f102a157 100644 --- a/packages/basic.gblib/services/GBVMService.ts +++ b/packages/basic.gblib/services/GBVMService.ts @@ -579,6 +579,8 @@ export class GBVMService extends GBService { }); return uuid; }; + const random = () => { return Number.parseInt((Math.random() * 8) % 8 * 100000000)}; + // Setups interprocess communication from .gbdialog run-time to the BotServer API.