1
0
forked from noxious/server

create demo zone fix

This commit is contained in:
Dennis Postma 2024-07-07 14:10:25 +02:00
parent 76207e3bc3
commit 4fcb9693b6
3 changed files with 2 additions and 3 deletions

View File

@ -85,7 +85,6 @@ model Zone {
width Int
height Int
tiles Json
walls Json
zoneObjects ZoneObject[]
characters Character[]
chats Chat[]

View File

@ -43,7 +43,7 @@ class ZoneRepository {
name: name,
width: width,
height: height,
tiles: tiles,
tiles: tiles
}
});
} catch (error: any) {
@ -62,7 +62,7 @@ class ZoneRepository {
name: name,
width: width,
height: height,
tiles: tiles,
tiles: tiles
}
});
} catch (error: any) {