1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-25 17:40:36 +00:00

no clearing::imput on bounded

This commit is contained in:
Zeno Rogue 2019-12-26 09:40:16 +01:00
parent 873c679c01
commit 78930f08f9

View File

@ -977,6 +977,7 @@ EX namespace clearing {
} }
EX void imput(cell *c) { EX void imput(cell *c) {
if(bounded) return;
if(score.count(c)) return; if(score.count(c)) return;
auto& is = score[c]; auto& is = score[c];
celltype t = get_celltype(c); celltype t = get_celltype(c);