1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-06 04:17:58 +00:00

added missing override

This commit is contained in:
Zeno Rogue
2023-04-11 16:43:34 +02:00
parent 2a05642198
commit 2576918b8a
4 changed files with 7 additions and 7 deletions

View File

@@ -660,7 +660,7 @@ struct hrmap_hat : hrmap {
throw hr_exception("not in hats");
}
void find_cell_connection(cell *c, int d) {
void find_cell_connection(cell *c, int d) override {
int id = hat_id(c);
indenter ind(2);
for(auto& ru: rules_base) {