Renamed .ent to .rem - Reflex Entity Mapping file to avoid confusion

This commit is contained in:
surkeh
2017-08-28 18:24:00 -07:00
parent fc711448d8
commit f88a4710f0
6 changed files with 8 additions and 8 deletions

View File

@@ -684,7 +684,7 @@ EntityConverter::mapEntities (const std::string &mapFile)
fin.open (mapFile);
if (fin.is_open()) {
//Read .ent contents into pickup map
//Read Reflex Entity Mapping file contents into pickup map
std::string line;
while (std::getline (fin, line)) {
std::istringstream iss (line);
@@ -698,7 +698,7 @@ EntityConverter::mapEntities (const std::string &mapFile)
}
}
else {
throw std::ios::failure ("Error: EntityConverter failed to open .ent file");
throw std::ios::failure ("Error: EntityConverter failed to open Reflex Entity Mapping file");
}
fin.close();