bindings bug fix

If binding was blocked in one world, it stayed being blocked in other.
This commit is contained in:
ChancellorIkseew
2024-11-02 05:09:55 +10:00
parent 63304712f3
commit 7763157cdc
3 changed files with 10 additions and 0 deletions
+7
View File
@@ -231,3 +231,10 @@ void Events::loadBindings(
}
}
}
void Events::enableBindings() {
for (auto& entry : bindings) {
auto& binding = entry.second;
binding.enable = true;
}
}