forked from teamnwah/openmw-tes3coop
[Client] Remove unnecessary condition from WorldTime processor
This commit is contained in:
parent
49ea76aa9d
commit
2edb511a0b
1 changed files with 15 additions and 18 deletions
|
@ -18,28 +18,25 @@ namespace mwmp
|
||||||
|
|
||||||
virtual void Do(WorldstatePacket &packet, BaseWorldstate &worldstate)
|
virtual void Do(WorldstatePacket &packet, BaseWorldstate &worldstate)
|
||||||
{
|
{
|
||||||
if (isLocal())
|
MWBase::World *world = MWBase::Environment::get().getWorld();
|
||||||
{
|
|
||||||
MWBase::World *world = MWBase::Environment::get().getWorld();
|
|
||||||
|
|
||||||
if (worldstate.hour != -1)
|
if (worldstate.hour != -1)
|
||||||
world->setHour(worldstate.hour);
|
world->setHour(worldstate.hour);
|
||||||
|
|
||||||
if (worldstate.day != -1)
|
if (worldstate.day != -1)
|
||||||
world->setDay(worldstate.day);
|
world->setDay(worldstate.day);
|
||||||
|
|
||||||
if (worldstate.month != -1)
|
if (worldstate.month != -1)
|
||||||
world->setMonth(worldstate.month);
|
world->setMonth(worldstate.month);
|
||||||
|
|
||||||
if (worldstate.year != -1)
|
if (worldstate.year != -1)
|
||||||
world->setYear(worldstate.year);
|
world->setYear(worldstate.year);
|
||||||
|
|
||||||
if (worldstate.daysPassed != -1)
|
if (worldstate.daysPassed != -1)
|
||||||
world->setDaysPassed(worldstate.daysPassed);
|
world->setDaysPassed(worldstate.daysPassed);
|
||||||
|
|
||||||
if (worldstate.timeScale != -1)
|
if (worldstate.timeScale != -1)
|
||||||
world->setTimeScale(worldstate.timeScale);
|
world->setTimeScale(worldstate.timeScale);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue