From b0397f7273c04a3759102dec902fa69d9228927c Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Tue, 26 Mar 2013 19:27:14 +0000 Subject: cBlockArea: Fixed type / meta copypasta errors in mirroring and rotation code git-svn-id: http://mc-server.googlecode.com/svn/trunk@1318 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/BlockArea.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/BlockArea.h') diff --git a/source/BlockArea.h b/source/BlockArea.h index 7624dec23..76c4f749a 100644 --- a/source/BlockArea.h +++ b/source/BlockArea.h @@ -149,12 +149,12 @@ public: NIBBLETYPE a_BlockLight = 0, NIBBLETYPE a_BlockSkyLight = 0x0f ); - /// Rotates the entire area clockwise around the Y axis - void RotateCW(void); - /// Rotates the entire area counter-clockwise around the Y axis void RotateCCW(void); + /// Rotates the entire area clockwise around the Y axis + void RotateCW(void); + /// Mirrors the entire area around the XY plane void MirrorXY(void); @@ -164,12 +164,12 @@ public: /// Mirrors the entire area around the YZ plane void MirrorYZ(void); - /// Rotates the entire area clockwise around the Y axis, doesn't use blockhandlers for block meta - void RotateCWNoMeta(void); - /// Rotates the entire area counter-clockwise around the Y axis, doesn't use blockhandlers for block meta void RotateCCWNoMeta(void); + /// Rotates the entire area clockwise around the Y axis, doesn't use blockhandlers for block meta + void RotateCWNoMeta(void); + /// Mirrors the entire area around the XY plane, doesn't use blockhandlers for block meta void MirrorXYNoMeta(void); -- cgit v1.2.3