mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-18 23:10:26 +00:00
removed the obsolete function isHive
This commit is contained in:
parent
5f82699052
commit
db5e89feae
@ -1775,7 +1775,6 @@ namespace hive {
|
||||
// pheromones!
|
||||
if(c->land == laHive && c->landparam < 90) c->landparam += 5;
|
||||
if(c2->land == laHive && c2->landparam < 90) c2->landparam += 5;
|
||||
// if(isHive(c2->land)) c2->land = eLand(laHive0+k);
|
||||
/* if(c2->item == itRoyalJelly && !isQueen(m)) {
|
||||
// advance!
|
||||
c2->monst = eMonster(m+BUGCOLORS);
|
||||
|
@ -244,10 +244,6 @@ bool isArmedEnemy(cell *w, eMonster forwho) {
|
||||
return w->monst != moCrystalSage && w->monst != moCrusher && isActiveEnemy(w, forwho);
|
||||
}
|
||||
|
||||
bool isHive(eLand l) {
|
||||
return l == laHive;
|
||||
}
|
||||
|
||||
bool eternalFire(cell *c) {
|
||||
return c->land == laDryForest || (c->land == laPower && !smallbounded) || c->land == laMinefield ||
|
||||
c->land == laEFire || c->land == laElementalWall;
|
||||
|
@ -1477,7 +1477,7 @@ void giantLandSwitch(cell *c, int d, cell *from) {
|
||||
}
|
||||
}
|
||||
ONEMPTY {
|
||||
if(isHive(c->land) && hrand_monster(6000) < (hive::hivehard() - 15))
|
||||
if(hrand_monster(6000) < (hive::hivehard() - 15))
|
||||
c->monst = hive::randomHyperbug();
|
||||
|
||||
/* if(hrand(1500) < 30 + (kills[moBug0] + kills[moBug1] + kills[moBug2]) && notDippingFor(itRoyalJelly))
|
||||
|
@ -702,12 +702,6 @@ eLand getNewLand(eLand old) {
|
||||
eLand tab[1024];
|
||||
int cnt = 0;
|
||||
|
||||
/* if(isHive(old) && hrand(100) < 90) {
|
||||
eLand n = old;
|
||||
while(n == old) n = eLand(laHive0 + hrand(3));
|
||||
return n;
|
||||
} */
|
||||
|
||||
// return (hrand(2)) ? laMotion : laJungle;
|
||||
|
||||
// the basic lands, always available
|
||||
|
Loading…
Reference in New Issue
Block a user