Skip to content

Commit

Permalink
Decreasing the number of potions used in the demo (also updating the …
Browse files Browse the repository at this point in the history
…corresponding example in the README.md) because of the fix in c669dbf.
  • Loading branch information
razterizer committed Oct 13, 2024
1 parent 877dc39 commit 5fa741c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ if (!dungeon_engine.place_player(sh.size()))
dungeon_engine->place_keys(true);
dungeon_engine->place_lamps(20, 15, 5, true);
dungeon_engine->place_weapons(150, true);
dungeon_engine->place_potions(150, true);
dungeon_engine->place_potions(100, true);
dungeon_engine->place_armour(150, true);
dungeon_engine->place_npcs(100, false);
dungeon_engine.set_screen_scrolling_mode(ScreenScrollingMode::WhenOutsideScreen);
Expand Down
2 changes: 1 addition & 1 deletion demo/demo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class Game : public GameEngine<>, public dung::DungGineListener
dungeon_engine->place_keys(true);
dungeon_engine->place_lamps(30, 15, 5, true);
dungeon_engine->place_weapons(150, true);
dungeon_engine->place_potions(150, true);
dungeon_engine->place_potions(100, true);
dungeon_engine->place_armour(150, true);
dungeon_engine->place_npcs(100, true);

Expand Down

0 comments on commit 5fa741c

Please sign in to comment.