Add +4 as a possible enchantment

This commit is contained in:
2024-08-31 14:20:07 -04:00
committed by Celtic Minstrel
parent 4df389db6d
commit 4702d19122
5 changed files with 6 additions and 3 deletions

View File

@@ -746,7 +746,7 @@ std::istream& operator>> (std::istream& in, eCreatureStatus& status) {
// MARK: eEnchant
cEnumLookup enchant_strs = {"+1", "+2", "+3", "shoot-flame", "flaming", "+5", "blessed"};
cEnumLookup enchant_strs = {"+1", "+2", "+3", "shoot-flame", "flaming", "+5", "blessed", "+4"};
std::ostream& operator<< (std::ostream& out, eEnchant ench) {
writeEnum(out, ench, enchant_strs, "+1");