mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 17:10:36 +00:00
gate radius is back to 3 on spheres and a4
This commit is contained in:
parent
2ef7d61d36
commit
cf38081186
2
game.cpp
2
game.cpp
@ -3168,7 +3168,7 @@ void toggleGates(cell *ct, eWall type) {
|
|||||||
if(type == waClosePlate && nonbitrunc && !gp::on)
|
if(type == waClosePlate && nonbitrunc && !gp::on)
|
||||||
toggleGates(ct, type, 2);
|
toggleGates(ct, type, 2);
|
||||||
else
|
else
|
||||||
toggleGates(ct, type, gp::on ? gp::dist_3() : 3);
|
toggleGates(ct, type, (gp::on && !sphere && !a4) ? gp::dist_3() : 3);
|
||||||
if(numgates && type == waClosePlate)
|
if(numgates && type == waClosePlate)
|
||||||
playSound(ct, "closegate");
|
playSound(ct, "closegate");
|
||||||
if(numgates && type == waOpenPlate)
|
if(numgates && type == waOpenPlate)
|
||||||
|
Loading…
Reference in New Issue
Block a user