1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-07-04 09:22:42 +00:00

bounded Minefield now works according to the standard Minesweeper rules

This commit is contained in:
Zeno Rogue
2019-04-04 14:36:45 +02:00
parent e61c684bca
commit 57f2891826
8 changed files with 52 additions and 2 deletions
+5
View File
@@ -4,6 +4,9 @@
namespace hr {
ld bounded_mine_percentage = 0.1;
int bounded_mine_quantity, bounded_mine_max;
const char *conffile = "hyperrogue.ini";
array<ld, gGUARD> sightranges;
@@ -409,6 +412,8 @@ void initConfig() {
addsaver(racing::standard_centering, "race_standard_centering");
#endif
addsaver(bounded_mine_percentage, "bounded_mine_percentage");
#if CAP_SHMUP
shmup::initConfig();
#endif