1
0
forked from noxious/server

Enum bug fix

This commit is contained in:
2024-12-25 13:49:43 +01:00
parent 95f4c58110
commit aa3ee8f0af
3 changed files with 107 additions and 3 deletions

View File

@ -37,6 +37,6 @@ export class MapObject {
@Property()
updatedAt = new Date()
@OneToMany(() => ZoneObject, (zoneObject) => zoneObject.object)
@OneToMany(() => ZoneObject, (zoneObject) => zoneObject.mapObject)
zoneObjects = new Collection<ZoneObject>(this)
}