diff options
| author | mknjc <none@none> | 2009-04-07 16:24:49 +0200 | 
|---|---|---|
| committer | mknjc <none@none> | 2009-04-07 16:24:49 +0200 | 
| commit | 3157aa4013ca4fdcec96eabdd6354c26b103a645 (patch) | |
| tree | b7349f467773db3c0b868d978974da46e718c810 /src/game/World.cpp | |
| parent | 27082d1a2d4d4f3bf52cbe06a926685d77e98e73 (diff) | |
Used constant SEC_PLAYER in World::SendGMText(int32 string_id, ...)
--HG--
branch : trunk
Diffstat (limited to 'src/game/World.cpp')
| -rw-r--r-- | src/game/World.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/World.cpp b/src/game/World.cpp index f7e10c62dc9..d138b15ac75 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -2540,7 +2540,7 @@ void World::SendGMText(int32 string_id, ...)              data_list = &data_cache[cache_idx];          for(int i = 0; i < data_list->size(); ++i) -            if(itr->second->GetSecurity()>0) +            if(itr->second->GetSecurity() > SEC_PLAYER)              itr->second->SendPacket((*data_list)[i]);      }  | 
