refactor: bump client IDs by a billion so client won't conflict

This commit is contained in:
cha0s 2019-11-03 10:23:44 -06:00
parent 91c18df5e5
commit 5072bbb718

View File

@ -86,7 +86,7 @@ const decorate = compose(
SynchronizedMixin,
);
let numericUid = 1;
let numericUid = AVOCADO_SERVER ? 1 : 1000000000;
export class Entity extends decorate(Resource) {