diff options
Diffstat (limited to 'server/src/data.rs')
-rw-r--r-- | server/src/data.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/data.rs b/server/src/data.rs index e59b8b35..fd268cb5 100644 --- a/server/src/data.rs +++ b/server/src/data.rs @@ -52,8 +52,8 @@ pub struct Demand { pub struct Gamedata { recipes: Vec<Recipe>, pub demands: Vec<Demand>, - item_names: Vec<String>, - tile_names: Vec<String>, + pub item_names: Vec<String>, + pub tile_names: Vec<String>, #[serde(skip)] pub initial_map: HashMap<IVec2, TileIndex>, pub chef_spawn: Vec2, |