1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-30 12:06:48 +00:00

Minor correction

This commit is contained in:
scrawl 2014-01-14 09:10:09 +01:00
parent de64c57179
commit a432661b8a

View file

@ -183,7 +183,7 @@ namespace MWGui
if (x > y)
{
float fSleepRestMod = world->getStore().get<ESM::GameSetting>().find("fSleepRestMod")->getFloat();
mInterruptAt = int(fSleepRestMod * hoursToWait);
mInterruptAt = hoursToWait - int(fSleepRestMod * hoursToWait);
mInterruptCreatureList = region->mSleepList;
}
}