summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockRail.h
diff options
context:
space:
mode:
authornarroo <narroo@vt.edu>2014-03-26 13:54:17 +0100
committernarroo <narroo@vt.edu>2014-03-26 13:54:17 +0100
commit90415ff79886f63cacced59f202228ddac69765a (patch)
tree9a39389f1a6e89b8a287c7164402d79b917f59e7 /src/Blocks/BlockRail.h
parentAdded a comment about the behavior of doors under mirros. Simply put, the current implementation of MetaMirror causes glitchy behavior. The door class itself needs to be edited. (I've got an idea on that....) (diff)
downloadcuberite-90415ff79886f63cacced59f202228ddac69765a.tar
cuberite-90415ff79886f63cacced59f202228ddac69765a.tar.gz
cuberite-90415ff79886f63cacced59f202228ddac69765a.tar.bz2
cuberite-90415ff79886f63cacced59f202228ddac69765a.tar.lz
cuberite-90415ff79886f63cacced59f202228ddac69765a.tar.xz
cuberite-90415ff79886f63cacced59f202228ddac69765a.tar.zst
cuberite-90415ff79886f63cacced59f202228ddac69765a.zip
Diffstat (limited to 'src/Blocks/BlockRail.h')
-rw-r--r--src/Blocks/BlockRail.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Blocks/BlockRail.h b/src/Blocks/BlockRail.h
index f56ec7152..477707a91 100644
--- a/src/Blocks/BlockRail.h
+++ b/src/Blocks/BlockRail.h
@@ -453,8 +453,8 @@ public:
case 0x02: return 0x04 + OtherMeta; // Asc. East -> Asc. North
case 0x04: return 0x03 + OtherMeta; // Asc. North -> Asc. West
- case 0x03: return 0x05 + OtherMeta; // Asc. West -> Asc. South
- case 0x05: return 0x02 + OtherMeta; // Asc. South -> Asc. East
+ case 0x03: return 0x05 + OtherMeta; // Asc. West -> Asc. South
+ case 0x05: return 0x02 + OtherMeta; // Asc. South -> Asc. East
}
}
else
@@ -489,8 +489,8 @@ public:
case 0x02: return 0x05 + OtherMeta; // Asc. East -> Asc. South
case 0x05: return 0x03 + OtherMeta; // Asc. South -> Asc. West
- case 0x03: return 0x04 + OtherMeta; // Asc. West -> Asc. North
- case 0x04: return 0x02 + OtherMeta; // Asc. North -> Asc. East
+ case 0x03: return 0x04 + OtherMeta; // Asc. West -> Asc. North
+ case 0x04: return 0x02 + OtherMeta; // Asc. North -> Asc. East
}
}
else
@@ -521,7 +521,7 @@ public:
switch (a_Meta & 0x07)
{
case 0x05: return 0x04 + OtherMeta; // Asc. South -> Asc. North
- case 0x04: return 0x05 + OtherMeta; // Asc. North -> Asc. South
+ case 0x04: return 0x05 + OtherMeta; // Asc. North -> Asc. South
}
}
else
@@ -552,7 +552,7 @@ public:
switch (a_Meta & 0x07)
{
case 0x02: return 0x03 + OtherMeta; // Asc. East -> Asc. West
- case 0x03: return 0x02 + OtherMeta; // Asc. West -> Asc. East
+ case 0x03: return 0x02 + OtherMeta; // Asc. West -> Asc. East
}
}
else