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)
|
||||
{
|
||||
if (isLocal())
|
||||
{
|
||||
MWBase::World *world = MWBase::Environment::get().getWorld();
|
||||
MWBase::World *world = MWBase::Environment::get().getWorld();
|
||||
|
||||
if (worldstate.hour != -1)
|
||||
world->setHour(worldstate.hour);
|
||||
|
||||
if (worldstate.day != -1)
|
||||
world->setDay(worldstate.day);
|
||||
|
||||
if (worldstate.month != -1)
|
||||
world->setMonth(worldstate.month);
|
||||
if (worldstate.hour != -1)
|
||||
world->setHour(worldstate.hour);
|
||||
|
||||
if (worldstate.day != -1)
|
||||
world->setDay(worldstate.day);
|
||||
|
||||
if (worldstate.month != -1)
|
||||
world->setMonth(worldstate.month);
|
||||
|
||||
if (worldstate.year != -1)
|
||||
world->setYear(worldstate.year);
|
||||
if (worldstate.year != -1)
|
||||
world->setYear(worldstate.year);
|
||||
|
||||
if (worldstate.daysPassed != -1)
|
||||
world->setDaysPassed(worldstate.daysPassed);
|
||||
if (worldstate.daysPassed != -1)
|
||||
world->setDaysPassed(worldstate.daysPassed);
|
||||
|
||||
if (worldstate.timeScale != -1)
|
||||
world->setTimeScale(worldstate.timeScale);
|
||||
}
|
||||
if (worldstate.timeScale != -1)
|
||||
world->setTimeScale(worldstate.timeScale);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue