fix failing test for room

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

View File

@ -1,6 +1,6 @@
[package]
name = "bitsy-parser"
version = "0.65.3"
version = "0.65.4"
authors = ["Max Bradbury <max@tinybird.info>"]
edition = "2018"
description = "A parser for Bitsy game data"

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 }
}
}