diff --git a/src/layers/RewardHistory/RewardCell.cpp b/src/layers/RewardHistory/RewardCell.cpp index 30e0a63..9d5aaf4 100644 --- a/src/layers/RewardHistory/RewardCell.cpp +++ b/src/layers/RewardHistory/RewardCell.cpp @@ -15,6 +15,14 @@ std::string RewardCell::getDisplayName() { return fmt::format("{} Gauntlet", GauntletNode::nameForType((GauntletType) BetterInfo::stoi(key))); } + /** + * Path chests + */ + if(key[0] == 'p' && key[1] == 'r' && key[2] == '_') { + key = key.substr(3); + return fmt::format("{} Path", GJPathsLayer::nameForPath(BetterInfo::stoi(key))); + } + /** * Other chests */