Dungeon fixes

This commit is contained in:
Vechro 2019-08-17 09:28:34 +03:00 committed by Joshua Barretto
parent 90630a4edc
commit d185d8628a
2 changed files with 2 additions and 2 deletions

View File

@ -43,12 +43,12 @@ lazy_static! {
assets::load_map(
"world.structure.dungeon.meso_sewer_temple",
|s: Structure| s
.with_center(Vec3::new(66, 56, 60))
.with_center(Vec3::new(63, 62, 60))
.with_default_kind(BlockKind::Dense)
)
.unwrap(),
assets::load_map("world.structure.dungeon.ruins_maze", |s: Structure| s
.with_center(Vec3::new(56, 62, 116))
.with_center(Vec3::new(60, 60, 116))
.with_default_kind(BlockKind::Dense))
.unwrap(),
];