1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-09-27 21:58:13 +00:00

gate radius is back to 3 on spheres and a4

This commit is contained in:
Zeno Rogue 2018-04-12 20:53:17 +02:00
parent 2ef7d61d36
commit cf38081186

View File

@ -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)