We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52389c2 commit 82d5455Copy full SHA for 82d5455
src/TableData.cpp
@@ -608,9 +608,8 @@ void TableData::loadDrops() {
608
}
609
610
if (EPMap == -1) { // not found
611
- char buff[255];
612
- sprintf(buff, "EP with ID %d not found", raceEPID);
613
- throw TableException(std::string(buff));
+ std::cout << "[WARN] EP with ID " << raceEPID << " not found, skipping" << std::endl;
+ continue;
614
615
616
// time limit isn't stored in the XDT, so we include it in the reward table instead
0 commit comments