removed room.* (unused)

This commit is contained in:
2024-07-13 14:22:06 -04:00
parent 9fdbf141d3
commit 3ae82841f4
6 changed files with 19 additions and 45 deletions

View File

@ -13,21 +13,6 @@ struct gold {
typedef std::vector<gold> gold_list;
int rand_gold_pile(RNG *rng) {
const int denominator = 8;
const int normal = 5;
const int dragon = 6;
int tmp = rng->rand_under(denominator);
if (tmp < normal)
return GOLD_NORMAL;
else if (tmp < dragon)
return GOLD_DRAGON;
else
return GOLD_SMALL;
return 0;
}
int rand_gold_pile(RNG *rng);
#endif