mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-19 23:30:25 +00:00
parts pushed too fast
This commit is contained in:
parent
458b3f5dae
commit
162542b616
@ -761,4 +761,6 @@ bool is_mirrorland(cell *c) {
|
|||||||
return among(c->land, laMirror, laMirrorOld);
|
return among(c->land, laMirror, laMirrorOld);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool isPushable(eWall w) { return w == waThumperOn; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
2
game.cpp
2
game.cpp
@ -3347,7 +3347,7 @@ void uncoverMinesFull(cell *c2) {
|
|||||||
items[itBombEgg] < 30 ? 2 :
|
items[itBombEgg] < 30 ? 2 :
|
||||||
3;
|
3;
|
||||||
|
|
||||||
bool nomine = !normal_gravity_at(c2);
|
bool nomine = false;
|
||||||
if(!nomine && uncoverMines(c2, mineradius, 0, true) && markOrb(itOrbAether))
|
if(!nomine && uncoverMines(c2, mineradius, 0, true) && markOrb(itOrbAether))
|
||||||
nomine = true;
|
nomine = true;
|
||||||
|
|
||||||
|
@ -58,8 +58,6 @@ void buildRedWall(cell *c, int gemchance) {
|
|||||||
|
|
||||||
bool reptilecheat = false;
|
bool reptilecheat = false;
|
||||||
|
|
||||||
#define ONEMPTY if(d == 7 && passable(c, NULL, 0) && !safety)
|
|
||||||
|
|
||||||
bool blizzard_no_escape1(cell *c, manual_celllister &cl) {
|
bool blizzard_no_escape1(cell *c, manual_celllister &cl) {
|
||||||
if(!cl.add(c)) return true;
|
if(!cl.add(c)) return true;
|
||||||
if(c->item == itOrbSafety)
|
if(c->item == itOrbSafety)
|
||||||
|
@ -5,6 +5,9 @@ namespace hr {
|
|||||||
|
|
||||||
namespace mapeditor {
|
namespace mapeditor {
|
||||||
|
|
||||||
|
hyperpoint lstart;
|
||||||
|
cell *lstartcell;
|
||||||
|
|
||||||
struct editwhat {
|
struct editwhat {
|
||||||
double dist;
|
double dist;
|
||||||
int rotid, symid, pointid;
|
int rotid, symid, pointid;
|
||||||
@ -1527,9 +1530,6 @@ namespace mapeditor {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
hyperpoint lstart;
|
|
||||||
cell *lstartcell;
|
|
||||||
|
|
||||||
void drawHandleKey(int sym, int uni) {
|
void drawHandleKey(int sym, int uni) {
|
||||||
|
|
||||||
handlePanning(sym, uni);
|
handlePanning(sym, uni);
|
||||||
|
@ -365,7 +365,7 @@ namespace flocking {
|
|||||||
dialog::editNumber(N, 0, 1000, 1, 10, "", "smaller number = more precise simulation");
|
dialog::editNumber(N, 0, 1000, 1, 10, "", "smaller number = more precise simulation");
|
||||||
});
|
});
|
||||||
|
|
||||||
dialog::addSelItem("change geometry", XLAT(ginf[geometry].name), 'g');
|
dialog::addSelItem("change geometry", XLAT(ginf[geometry].shortname), 'g');
|
||||||
hr::showquotients = true;
|
hr::showquotients = true;
|
||||||
dialog::add_action(runGeometryExperiments);
|
dialog::add_action(runGeometryExperiments);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user