diff options
author | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-22 14:46:55 +0100 |
---|---|---|
committer | Tycho Bickerstaff <work.tycho@gmail.com> | 2013-12-22 14:46:55 +0100 |
commit | d7242414070aa823f879f225b0cf734f4a880759 (patch) | |
tree | 5a49a42221aca3ff37f901274ad60746f9747c40 /src/Simulator/SandSimulator.h | |
parent | Merge branch 'master' of github.com:mc-server/MCServer (diff) | |
download | cuberite-d7242414070aa823f879f225b0cf734f4a880759.tar cuberite-d7242414070aa823f879f225b0cf734f4a880759.tar.gz cuberite-d7242414070aa823f879f225b0cf734f4a880759.tar.bz2 cuberite-d7242414070aa823f879f225b0cf734f4a880759.tar.lz cuberite-d7242414070aa823f879f225b0cf734f4a880759.tar.xz cuberite-d7242414070aa823f879f225b0cf734f4a880759.tar.zst cuberite-d7242414070aa823f879f225b0cf734f4a880759.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Simulator/SandSimulator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Simulator/SandSimulator.h b/src/Simulator/SandSimulator.h index 90447c915..6e64aa425 100644 --- a/src/Simulator/SandSimulator.h +++ b/src/Simulator/SandSimulator.h @@ -15,7 +15,7 @@ public: cSandSimulator(cWorld & a_World, cIniFile & a_IniFile); // cSimulator overrides: - virtual void Simulate(float /*a_Dt*/) override {} // Unused in this simulator + virtual void Simulate(float a_Dt) override { UNUSED(a_Dt);} // not used virtual void SimulateChunk(float a_Dt, int a_ChunkX, int a_ChunkZ, cChunk * a_Chunk) override; virtual bool IsAllowedBlock(BLOCKTYPE a_BlockType) override; |