summaryrefslogtreecommitdiffstats
path: root/source/ChunkDef.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-03-02 15:28:52 +0100
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-03-02 15:28:52 +0100
commite4a0c284c1d54945e7e5c3567fd9780c95475137 (patch)
tree8431e48b1e37a4180b1584ecc05def89b003a252 /source/ChunkDef.h
parentNew fire simulator, fully rewritten to the new scheme of things, directly accessing chunk data. (diff)
downloadcuberite-e4a0c284c1d54945e7e5c3567fd9780c95475137.tar
cuberite-e4a0c284c1d54945e7e5c3567fd9780c95475137.tar.gz
cuberite-e4a0c284c1d54945e7e5c3567fd9780c95475137.tar.bz2
cuberite-e4a0c284c1d54945e7e5c3567fd9780c95475137.tar.lz
cuberite-e4a0c284c1d54945e7e5c3567fd9780c95475137.tar.xz
cuberite-e4a0c284c1d54945e7e5c3567fd9780c95475137.tar.zst
cuberite-e4a0c284c1d54945e7e5c3567fd9780c95475137.zip
Diffstat (limited to 'source/ChunkDef.h')
-rw-r--r--source/ChunkDef.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/ChunkDef.h b/source/ChunkDef.h
index b0d053b5e..927957e07 100644
--- a/source/ChunkDef.h
+++ b/source/ChunkDef.h
@@ -526,12 +526,12 @@ public:
int z;
X Data;
- cCoordWithData<typename X>(int a_X, int a_Y, int a_Z) :
+ cCoordWithData(int a_X, int a_Y, int a_Z) :
x(a_X), y(a_Y), z(a_Z)
{
}
- cCoordWithData<typename X>(int a_X, int a_Y, int a_Z, const X & a_Data) :
+ cCoordWithData(int a_X, int a_Y, int a_Z, const X & a_Data) :
x(a_X), y(a_Y), z(a_Z), Data(a_Data)
{
}