1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-21 11:39:44 +00:00

Fix extra space in "no script" showvars output

This commit is contained in:
Capostrophic 2019-03-10 17:12:43 +03:00
parent 578beb6305
commit dd952c3ddb

View file

@ -951,7 +951,7 @@ namespace MWScript
const std::string script = ptr.getClass().getScript(ptr);
if(script.empty())
str<< ptr.getCellRef().getRefId()<<" does not have a script.";
str<< ptr.getCellRef().getRefId()<<" does not have a script.";
else
{
str<< "Local variables for "<<ptr.getCellRef().getRefId();