1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-01-18 09:00:19 +00:00

renamed waBlandDie to waHappyDie

This commit is contained in:
Zeno Rogue
2021-05-27 16:38:20 +02:00
parent 707292a7e4
commit a2a1acfd8d
5 changed files with 11 additions and 11 deletions

View File

@@ -986,15 +986,15 @@ EX namespace dice {
int pct = hrand(100);
int pct2 = hrand(6000);
if(pct < 3) {
c->wall = waBlandDie;
c->wall = waHappyDie;
generate_specific(c, &d4, 0, 99);
}
else if(pct < 6) {
c->wall = waBlandDie;
c->wall = waHappyDie;
generate_specific(c, &d8, 0, 1);
}
else if(pct < (items[itOrbLuck] ? 8 : 9)) {
c->wall = waBlandDie;
c->wall = waHappyDie;
generate_specific(c, &d20, 0, 1);
}
else if(pct < 14) {