fix for ModelEntityItem::shouldBePhysical()

This commit is contained in:
Andrew Meadows 2015-09-30 18:32:08 -07:00
parent 22b6607760
commit 381c98c4fa

View file

@ -457,5 +457,5 @@ QString ModelEntityItem::getAnimationSettings() const {
// virtual
bool ModelEntityItem::shouldBePhysical() const {
return EntityItem::shouldBePhysical() && getShapeType() != SHAPE_TYPE_NONE;
return getShapeType() != SHAPE_TYPE_NONE;
}