mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-31 19:45:32 +00:00
f4587e48f3
(cherry picked from commit 13bb6be238
)
Conflicts:
apps/opencs/model/doc/savingstages.cpp
apps/opencs/model/world/land.cpp
apps/opencs/model/world/land.hpp
apps/opencs/model/world/landtexture.cpp
15 lines
277 B
C++
15 lines
277 B
C++
#include "land.hpp"
|
|
|
|
#include <sstream>
|
|
|
|
namespace CSMWorld
|
|
{
|
|
void Land::load(ESM::ESMReader &esm, bool &isDeleted)
|
|
{
|
|
mLand->load(esm, isDeleted);
|
|
|
|
std::ostringstream stream;
|
|
stream << "#" << mX << " " << mY;
|
|
mId = stream.str();
|
|
}
|
|
}
|