From 365cbc6e1cea96741e26c9ce912b003f8fd2c62c Mon Sep 17 00:00:00 2001 From: Mattes D Date: Sun, 29 Sep 2019 14:59:24 +0200 Subject: Refactored more of Entities and BlockEntities to use Vector3. (#4403) --- src/Entities/EnderCrystal.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/Entities/EnderCrystal.h') diff --git a/src/Entities/EnderCrystal.h b/src/Entities/EnderCrystal.h index 8f7e2e9b9..d8e295a3c 100644 --- a/src/Entities/EnderCrystal.h +++ b/src/Entities/EnderCrystal.h @@ -12,12 +12,13 @@ class cEnderCrystal : public cEntity { // tolua_end - typedef cEntity super; + using super = cEntity; public: + CLASS_PROTODEF(cEnderCrystal) - cEnderCrystal(double a_X, double a_Y, double a_Z); + cEnderCrystal(Vector3d a_Pos); private: -- cgit v1.2.3