fix failing test for room

This commit is contained in:
2020-04-13 19:26:11 +01:00
parent df2d0105e6
commit 2ee08dd264
2 changed files with 5 additions and 1 deletions

View File

@@ -76,6 +76,10 @@ impl From<String> for Room {
}
}
items.reverse();
exits.reverse();
endings.reverse();
Room { id, palette_id, name, tiles, items, exits, endings }
}
}