1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 14:37:44 +00:00

Revert "fixed style #4"

This reverts commit 4aa45fd71b.
This commit is contained in:
AriAvery 2018-07-16 16:21:01 +02:00
parent 4aa45fd71b
commit f00efb367a
2 changed files with 2 additions and 1 deletions

View file

@ -18,6 +18,7 @@
{ {
"name": "x86-Release", "name": "x86-Release",
"generator": "Visual Studio 14 2015", "generator": "Visual Studio 14 2015",
"configurationType": "Release",
"buildRoot": "${env.USERPROFILE}\\CMakeBuild\\${workspaceHash}\\build\\${name}", "buildRoot": "${env.USERPROFILE}\\CMakeBuild\\${workspaceHash}\\build\\${name}",
"cmakeCommandArgs": "", "cmakeCommandArgs": "",
"buildCommandArgs": "-m -v:minimal", "buildCommandArgs": "-m -v:minimal",

View file

@ -21,8 +21,8 @@ class HousingZone : public Zone
/* returns current ward number for this zone */ /* returns current ward number for this zone */
uint8_t getWardNum() const; uint8_t getWardNum() const;
const uint32_t m_wardMaxNum = 18;
const uint32_t m_wardMaxNum = 18;
private: private:
uint8_t m_wardNum; uint8_t m_wardNum;
}; };