diff options
Diffstat (limited to 'src/actormanager.cpp')
-rw-r--r-- | src/actormanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/actormanager.cpp b/src/actormanager.cpp index bfcc92e81..f305fae8f 100644 --- a/src/actormanager.cpp +++ b/src/actormanager.cpp @@ -1966,8 +1966,8 @@ void ActorManager::updateNameId(const std::string &name, return; const int id = static_cast<int>(beingId); if (id && - id < 2000000 || - id >= 110000000) + (id < 2000000 || + id >= 110000000)) { return; } |