# HG changeset patch # User Ritor1 # Date 1384710395 -21600 # Node ID 3fa489e0a3f2034d2720ae768d110ec0465ccbbc # Parent 23ef3589440fdb35e6b45c1ddcdf10c38b0856e5 pFloor->Ethereal() diff -r 23ef3589440f -r 3fa489e0a3f2 Indoor.cpp --- a/Indoor.cpp Sun Nov 17 23:26:44 2013 +0600 +++ b/Indoor.cpp Sun Nov 17 23:46:35 2013 +0600 @@ -4000,7 +4000,7 @@ for (uint i = 0; i < pSector->uNumFloors; ++i) { BLVFace* pFloor = &pIndoor->pFaces[pSector->pFloors[i]]; - if (pFloor->Clickable()) + if (pFloor->Ethereal()) continue; assert(pFloor->uNumVertices); diff -r 23ef3589440f -r 3fa489e0a3f2 Indoor.h --- a/Indoor.h Sun Nov 17 23:26:44 2013 +0600 +++ b/Indoor.h Sun Nov 17 23:46:35 2013 +0600 @@ -266,7 +266,7 @@ inline bool Portal() const {return (uAttributes & FACE_PORTAL) != 0;} inline bool Fluid() const {return (uAttributes & FACE_FLUID) != 0;} inline bool Clickable() const {return (uAttributes & FACE_CLICKABLE) != 0;} - + inline bool Ethereal() const {return (uAttributes & FACE_ETHEREAL) != 0;} struct Plane_float_ pFacePlane; struct Plane_int_ pFacePlane_old;