1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-25 01:20:37 +00:00

disabled Jelly/Ruins in Shmup

This commit is contained in:
Zeno Rogue 2018-01-04 22:02:43 +01:00
parent 040470205f
commit 2411d8f344

View File

@ -1233,6 +1233,10 @@ int isLandValid(eLand l) {
if(l == laStorms && torus) if(l == laStorms && torus)
return 3; return 3;
// not yet implemented in Shmup
if(shmup::on && (l == laSwitch || l == laRuins))
return 0;
if(l == laMagnetic) if(l == laMagnetic)
return 0; return 0;