1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-29 21:45:32 +00:00

fix spaces

This commit is contained in:
Koncord 2016-12-16 17:31:41 +08:00
parent 9ca206dda9
commit 4371a65fc6

View file

@ -50,7 +50,7 @@ void mwmp::WorldController::openContainer(const MWWorld::Ptr &container, bool lo
loot ? "true" : "false");
MWWorld::ContainerStore &cont = container.getClass().getContainerStore(container);
for(MWWorld::ContainerStoreIterator iter = cont.begin(); iter != cont.end(); iter++)
for (MWWorld::ContainerStoreIterator iter = cont.begin(); iter != cont.end(); iter++)
{
int count = iter->getRefData().getCount();
const std::string &name = iter->getCellRef().getRefId();
@ -70,7 +70,7 @@ void mwmp::WorldController::closeContainer(const MWWorld::Ptr &container)
container.getCellRef().getRefNum().mIndex);
MWWorld::ContainerStore &cont = container.getClass().getContainerStore(container);
for(MWWorld::ContainerStoreIterator iter = cont.begin(); iter != cont.end(); iter++)
for (MWWorld::ContainerStoreIterator iter = cont.begin(); iter != cont.end(); iter++)
{
LOG_APPEND(Log::LOG_VERBOSE, " - Item. Refid: \"%s\" Count: %d",
iter->getCellRef().getRefId().c_str(), iter->getRefData().getCount());