Skip to content

Commit

Permalink
Fix keeps
Browse files Browse the repository at this point in the history
  • Loading branch information
heimskr committed May 5, 2023
1 parent 774c238 commit 8bcd377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/worldgen/Town.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ namespace Game3::WorldGen {
const RealmID keep_realm_id = game.newRealmID();
const Index keep_width = 15;
const Index keep_height = 15;
const Position keep_entrance(keep_height - 1, keep_width / 2);
const Position keep_entrance(keep_height - 2, keep_width / 2);
const Position keep_exit = keep_position + Position(2, 0);
auto keep_tileset = game.registry<TilesetRegistry>().at("base:tileset/monomap");
auto keep_tilemap = std::make_shared<Tilemap>(keep_width, keep_height, 16, keep_tileset);
Expand Down

0 comments on commit 8bcd377

Please sign in to comment.