1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-08 09:42:59 +00:00

renamed 'near' to 'isnear' ('near' is a non-standard keyword)

This commit is contained in:
Zeno Rogue
2018-06-13 00:42:27 +02:00
parent 945c8a3f71
commit c0266a7164
2 changed files with 4 additions and 4 deletions

View File

@@ -2496,7 +2496,7 @@ namespace sword {
return false;
}
bool near(cell *where) {
bool isnear(cell *where) {
if(at(where, false)) return true;
forCellEx(w2, where) if(at(w2, false)) return true;
return false;