This commit is contained in:
Kim Ravn Hansen
2025-10-21 11:20:41 +02:00
parent e62c34e69e
commit 8a8434f5ac
6 changed files with 67 additions and 46 deletions

View File

@@ -72,7 +72,7 @@ export class ItemBlueprint extends ItemAttributes {
o.itemSlots = Number(o.itemSlots);
for (const [key, _] of Object.entries(this)) {
for (const [key] in this) {
if (o[key] !== "undefied") {
this[key] = o[key];
}