diff options
| -rw-r--r-- | src/game/editor/ed_io.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/editor/ed_io.cpp b/src/game/editor/ed_io.cpp index 8ca4f704..c2666138 100644 --- a/src/game/editor/ed_io.cpp +++ b/src/game/editor/ed_io.cpp @@ -574,7 +574,7 @@ int CEditor::Append(const char *pFileName) int Err; Err = NewMap.Load(Kernel()->RequestInterface<IStorage>(), pFileName); - if(Err) + if(!Err) return Err; // modify indecies |