merged paul

This commit is contained in:
2024-07-13 16:14:31 -04:00
20 changed files with 324 additions and 63 deletions

View File

@ -41,6 +41,6 @@ potion &potion::operator=(potion &&p) {
return *this;
}
void potion::print(display *out, bool color) {
out->print_char(pos, 'P');
void potion::print(display *out) {
out->print_char(pos, 'P', COLOR_PAIR(COLOR_GREEN));
}