mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 04:37:00 +00:00
[10612] Revert "[10611] Made some values const"
Reason: It makes no sense to make a local variable const. This reverts commit 49e3184d69056738701bc15d9b7f982bf11d7bbc.
This commit is contained in:
parent
47d971c7f9
commit
fc5dd54f37
59 changed files with 64 additions and 64 deletions
|
|
@ -1373,7 +1373,7 @@ void World::DetectDBCLang()
|
|||
}
|
||||
|
||||
/// Update the World !
|
||||
void World::Update(const uint32 diff)
|
||||
void World::Update(uint32 diff)
|
||||
{
|
||||
///- Update the different timers
|
||||
for(int i = 0; i < WUPDATE_COUNT; ++i)
|
||||
|
|
@ -1857,7 +1857,7 @@ void World::SendServerMessage(ServerMessageType type, const char *text, Player*
|
|||
SendGlobalMessage( &data );
|
||||
}
|
||||
|
||||
void World::UpdateSessions(const uint32 diff)
|
||||
void World::UpdateSessions( uint32 diff )
|
||||
{
|
||||
///- Add new sessions
|
||||
WorldSession* sess;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue