We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb33e0c commit 97202d8Copy full SHA for 97202d8
2 files changed
ArrayDatabase.js
@@ -122,8 +122,6 @@ export class ArrayDatabase {
122
const keys = world.getDynamicPropertyIds();
123
const prefix = this.keyPrefix;
124
for (const key of keys) {
125
- if (key.includes('_index'))
126
- console.warn(key);
127
if (!key.startsWith(prefix))
128
continue;
129
const index = Number(key.slice(prefix.length));
ArrayDatabase.ts
@@ -129,7 +129,6 @@ export class ArrayDatabase<T = any> {
130
131
132
- if (key.includes('_index')) console.warn(key)
133
if (!key.startsWith(prefix)) continue;
134
135
if (Number.isNaN(index)) {
0 commit comments