forked from teamnwah/openmw-tes3coop
Improve error message for unknown cells
This commit is contained in:
parent
091f9a8fdc
commit
ad0a182b7e
1 changed files with 2 additions and 2 deletions
|
@ -323,7 +323,7 @@ namespace MWScript
|
|||
}
|
||||
else
|
||||
{
|
||||
throw std::runtime_error ("unknown cell");
|
||||
throw std::runtime_error (std::string("unknown cell (") + cellID + ")");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
@ -420,7 +420,7 @@ namespace MWScript
|
|||
}
|
||||
else
|
||||
{
|
||||
throw std::runtime_error ("unknown cell");
|
||||
throw std::runtime_error ( std::string("unknown cell (") + cellID + ")");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue