Rename to GameDB and GameDB::Level.

This commit is contained in:
Zed A. Shaw 2025-08-20 23:20:36 -04:00
parent c46927ea10
commit a20d701096
23 changed files with 142 additions and 151 deletions

View file

@ -185,8 +185,8 @@ namespace gui {
}
void UI::complete_combine() {
auto world = Game::current_world();
auto player = Game::the_player();
auto world = GameDB::current_world();
auto player = GameDB::the_player();
if($craft_state.is_combined()) {
auto ritual = $ritual_engine.finalize($craft_state);
@ -249,7 +249,7 @@ namespace gui {
}
::ritual::Blanket& UI::blanket() {
auto world = Game::current_world();
auto world = GameDB::current_world();
return world->get_the<::ritual::Blanket>();
}
}