mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-27 15:11:36 -04:00
Correct an error in the timestamp subtracting logic (Fixes #3105)
This commit is contained in:
parent
2162f21550
commit
a1e163ed20
@ -96,7 +96,7 @@ namespace MWWorld
|
|||||||
if (left.getHour()<right.getHour())
|
if (left.getHour()<right.getHour())
|
||||||
{
|
{
|
||||||
hours = 24-right.getHour()+left.getHour();
|
hours = 24-right.getHour()+left.getHour();
|
||||||
++days;
|
--days;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user