diff options
Diffstat (limited to '')
-rw-r--r-- | src/Items/ItemEnderChest.h (renamed from src/Items/ItemEnderchest.h) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Items/ItemEnderchest.h b/src/Items/ItemEnderChest.h index bd8487b11..120abb8e6 100644 --- a/src/Items/ItemEnderchest.h +++ b/src/Items/ItemEnderChest.h @@ -2,13 +2,13 @@ #pragma once #include "ItemHandler.h" -#include "Blocks/BlockEnderchest.h" +#include "Blocks/BlockEnderChest.h" -class cItemEnderchestHandler final : +class cItemEnderChestHandler final : public cItemHandler { using Super = cItemHandler; @@ -21,6 +21,6 @@ private: virtual bool CommitPlacement(cPlayer & a_Player, const cItem & a_HeldItem, const Vector3i a_PlacePosition, const eBlockFace a_ClickedBlockFace, const Vector3i a_CursorPosition) const override { - return a_Player.PlaceBlock(a_PlacePosition, E_BLOCK_ENDER_CHEST, cBlockEnderchestHandler::YawToMetaData(a_Player.GetYaw())); + return a_Player.PlaceBlock(a_PlacePosition, E_BLOCK_ENDER_CHEST, cBlockEnderChestHandler::YawToMetaData(a_Player.GetYaw())); } }; |