From c52f299e724bf893944553ac3aeedf7bf0a58241 Mon Sep 17 00:00:00 2001 From: Tiger Wang Date: Sun, 2 Jan 2022 11:56:36 +0000 Subject: Handlers: update item and block handlers (#5371) + Resend blocks when server rejects placement because in a block * Fix chest handler not invoked, fixes #5367 * Fix comparator handler not invoked * Update some naming --- src/Items/ItemEnderchest.h | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/Items/ItemEnderchest.h (limited to 'src/Items/ItemEnderchest.h') diff --git a/src/Items/ItemEnderchest.h b/src/Items/ItemEnderchest.h deleted file mode 100644 index bd8487b11..000000000 --- a/src/Items/ItemEnderchest.h +++ /dev/null @@ -1,26 +0,0 @@ - -#pragma once - -#include "ItemHandler.h" -#include "Blocks/BlockEnderchest.h" - - - - - -class cItemEnderchestHandler final : - public cItemHandler -{ - using Super = cItemHandler; - -public: - - using Super::Super; - -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())); - } -}; -- cgit v1.2.3