summaryrefslogtreecommitdiffstats
path: root/src/BlockEntities/EnchantingTableEntity.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/BlockEntities/EnchantingTableEntity.cpp')
-rw-r--r--src/BlockEntities/EnchantingTableEntity.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/BlockEntities/EnchantingTableEntity.cpp b/src/BlockEntities/EnchantingTableEntity.cpp
new file mode 100644
index 000000000..55124e7d3
--- /dev/null
+++ b/src/BlockEntities/EnchantingTableEntity.cpp
@@ -0,0 +1,47 @@
+
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
+#include "EnchantingTableEntity.h"
+#include "../ClientHandle.h"
+
+
+
+
+
+cEnchantingTableEntity::cEnchantingTableEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World, AString a_CustomName) :
+ Super(a_BlockType, a_BlockMeta, a_Pos, a_World),
+ m_CustomName(std::move(a_CustomName))
+{
+ ASSERT(a_BlockType == E_BLOCK_ENCHANTMENT_TABLE);
+}
+
+
+
+
+
+void cEnchantingTableEntity::CopyFrom(const cBlockEntity & a_Src)
+{
+ Super::CopyFrom(a_Src);
+
+ auto & Src = static_cast<const cEnchantingTableEntity &>(a_Src);
+ m_CustomName = Src.m_CustomName;
+}
+
+
+
+
+
+bool cEnchantingTableEntity::UsedBy(cPlayer * a_Player)
+{
+ UNUSED(a_Player);
+ return true;
+}
+
+
+
+
+
+void cEnchantingTableEntity::SendTo(cClientHandle & a_Client)
+{
+ a_Client.SendUpdateBlockEntity(*this);
+}