diff options
author | reduz <reduzio@gmail.com> | 2015-12-29 16:06:45 -0300 |
---|---|---|
committer | reduz <reduzio@gmail.com> | 2015-12-29 16:06:45 -0300 |
commit | 875bff2c4e95e63c0eeca9d3fbe28bae79095a64 (patch) | |
tree | 547836e141ed43e0cd1538aa5a71dbdd0fb2a04d /scene | |
parent | 101fe4b845c9f831498461c4d3dae050f8c159fc (diff) |
-fix loading of samples in mod, s3m and xm. Fixes #2553
Diffstat (limited to 'scene')
-rw-r--r-- | scene/main/node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp index f5252cf446..90e3915fec 100644 --- a/scene/main/node.cpp +++ b/scene/main/node.cpp @@ -802,7 +802,7 @@ void Node::remove_child(Node *p_child) { } ERR_FAIL_COND( idx==-1 ); - ERR_FAIL_COND( p_child->data.blocked > 0 ); + //ERR_FAIL_COND( p_child->data.blocked > 0 ); //if (data.scene) { does not matter |