diff --git a/assets/Block_jugenstil1.png b/assets/Block_jugenstil1.png new file mode 100644 index 0000000..b68417b Binary files /dev/null and b/assets/Block_jugenstil1.png differ diff --git a/assets/Block_jugenstil2.png b/assets/Block_jugenstil2.png new file mode 100644 index 0000000..bcbd092 Binary files /dev/null and b/assets/Block_jugenstil2.png differ diff --git a/assets/Blockgrau.png b/assets/Blockgrau.png index 1121daa..b73dca3 100644 Binary files a/assets/Blockgrau.png and b/assets/Blockgrau.png differ diff --git a/src/game/scene.rs b/src/game/scene.rs index cb55e10..696da27 100644 --- a/src/game/scene.rs +++ b/src/game/scene.rs @@ -67,8 +67,8 @@ pub(super) fn import_text_world( mut player_spawn_oneshot: Res, ) { let world_string = fs::read_to_string("assets/world.txt").expect("need a world to load"); - let [info_string, world_string] = &readf("info section\n{}\nworld section\n{}", &world_string) - .expect("world does not have sections")[..] + let [info_string, world_string] = + &readf("header\n{}\nbody\n{}", &world_string).expect("world does not have sections")[..] else { unreachable!() };