Status UI now fakes a kind of 'hot bar' inventory display.

This commit is contained in:
Zed A. Shaw 2025-02-19 00:35:32 -05:00
parent f10498425e
commit 6447f86954
2 changed files with 12 additions and 1 deletions

View file

@ -66,5 +66,7 @@ matrix::Matrix TexturePack::convert_char_to_texture(matrix::Matrix &tile_ids) {
}
SpriteTexture TexturePack::get(std::string name) {
dbc::check(sprite_textures.contains(name),
fmt::format("!!!!! texture pack does not contain {} sprite", name));
return sprite_textures.at(name);
}