fixed issue with potion output, added extras menu for player race selection

This commit is contained in:
2024-07-18 13:59:58 -04:00
parent dfea74ed42
commit 12fcde6a3b
6 changed files with 70 additions and 76 deletions

View File

@ -14,7 +14,7 @@ int potion::get_duration() const {
}
void potion::print(output *out) const {
out->print_char(pos, 'P', COLOR_PAIR(COLOR_GREEN));
out->print_char(this->get_pos(), 'P', COLOR_PAIR(COLOR_GREEN));
}
size_t get_potion_at(const position &pos, const potion_list &plist) {