1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-22 21:23:18 +00:00

default_levs() in honeycombs can be 0

This commit is contained in:
Zeno Rogue 2020-01-28 19:45:24 +01:00
parent 9c25804a05
commit 37ff798ee4

View File

@ -138,6 +138,7 @@ EX int default_levs() {
return 1;
if(S3 >= OINF)
return 1;
if(reg3::in_rule()) return 0;
return S3-3;
}