mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
[10062] Removed wrong method const.
Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
parent
61959d285e
commit
c781dbbada
2 changed files with 2 additions and 2 deletions
|
|
@ -109,7 +109,7 @@ class MANGOS_DLL_DECL NGrid
|
||||||
}
|
}
|
||||||
|
|
||||||
const uint32& GetGridId() const { return i_gridId; }
|
const uint32& GetGridId() const { return i_gridId; }
|
||||||
void SetGridId(const uint32 id) const { i_gridId = id; }
|
void SetGridId(const uint32 id) { i_gridId = id; }
|
||||||
grid_state_t GetGridState() const { return i_cellstate; }
|
grid_state_t GetGridState() const { return i_cellstate; }
|
||||||
void SetGridState(grid_state_t s) { i_cellstate = s; }
|
void SetGridState(grid_state_t s) { i_cellstate = s; }
|
||||||
uint32 getX() const { return i_x; }
|
uint32 getX() const { return i_x; }
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "10061"
|
#define REVISION_NR "10062"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue