mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-29 22:02:58 +02:00
Don't default unknown Marketplace item types to 'Entity'
This commit is contained in:
parent
7381bb0d7e
commit
a0eb7e0712
1 changed files with 1 additions and 2 deletions
|
@ -147,8 +147,7 @@ Rectangle {
|
||||||
} else if (root.itemHref.indexOf('.json') > -1) {
|
} else if (root.itemHref.indexOf('.json') > -1) {
|
||||||
root.itemType = "entity"; // "wearable" type handled later
|
root.itemType = "entity"; // "wearable" type handled later
|
||||||
} else {
|
} else {
|
||||||
console.log("WARNING - Item type is UNKNOWN!");
|
root.itemType = "unknown";
|
||||||
root.itemType = "entity";
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue