diff --git a/src/client/thingtype.cpp b/src/client/thingtype.cpp index 7f946e3e..0755ac69 100644 --- a/src/client/thingtype.cpp +++ b/src/client/thingtype.cpp @@ -150,6 +150,12 @@ void ThingType::unserializeOtml(const OTMLNodePtr& node) m_attribs.set(ThingAttrNotPreWalkable, node2->value()); else if(node2->tag() == "image") m_customImage = node2->value(); + else if(node2->tag() == "full-ground") { + if(node2->value()) + m_attribs.set(ThingAttrFullGround, true); + else + m_attribs.remove(ThingAttrFullGround); + } } }