From e4ac84a6ab6354d1b5ff1af90ae896e3704429e7 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Sat, 7 Sep 2019 23:02:05 +0200 Subject: BiomeGen: Changed to use cChunkCoords params. --- src/ChunkDef.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/ChunkDef.h') diff --git a/src/ChunkDef.h b/src/ChunkDef.h index 95abdaf58..bfac29c5e 100644 --- a/src/ChunkDef.h +++ b/src/ChunkDef.h @@ -66,6 +66,11 @@ public: return ((m_ChunkX == a_Other.m_ChunkX) && (m_ChunkZ == a_Other.m_ChunkZ)); } + bool operator != (const cChunkCoords & a_Other) const + { + return !(operator == (a_Other)); + } + /** Returns a string that describes the chunk coords, suitable for logging. */ AString ToString() const { -- cgit v1.2.3