From 24a8456f79aa35cfe8c3859c880e1bffeae088c6 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Sat, 11 May 2019 15:43:26 -0400 Subject: Create Ender Portal with Eyes of Ender (#4126) The algorithm was designed so All portals must be facing the center, no matter which block had the eye inserted in last. Note: Still need to create a block entity so that portals don't become invisible when you relog. Addresses part of #3445 Fixes #3695 --- Server/Plugins/APIDump/APIDesc.lua | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) (limited to 'Server/Plugins') diff --git a/Server/Plugins/APIDump/APIDesc.lua b/Server/Plugins/APIDump/APIDesc.lua index 193a58285..a3ebde9bb 100644 --- a/Server/Plugins/APIDump/APIDesc.lua +++ b/Server/Plugins/APIDump/APIDesc.lua @@ -16518,6 +16518,46 @@ end { Notes = "A flag in the metadata of droppers and dispensers that indicates that the dropper or dispenser is looking in the positive Z direction.", }, + E_META_END_PORTAL_FRAME_EYE = + { + Notes = "A flag in the metadata of end portal frames that indicates that the portal frame has an eye in it.", + }, + E_META_END_PORTAL_FRAME_NO_EYE = + { + Notes = "The lack of the flag in the metadata of end portal frames indicating that the portal frame has an eye in it.", + }, + E_META_END_PORTAL_FRAME_XM = + { + Notes = "A flag in the metadata of end portal frames that indicates that the portal frame is facing the negative X direction.", + }, + E_META_END_PORTAL_FRAME_XP = + { + Notes = "A flag in the metadata of end portal frames that indicates that the portal frame is facing the positive X direction.", + }, + E_META_END_PORTAL_FRAME_ZM = + { + Notes = "A flag in the metadata of end portal frames that indicates that the portal frame is facing the negative Z direction.", + }, + E_META_END_PORTAL_FRAME_ZP = + { + Notes = "A flag in the metadata of end portal frames that indicates that the portal frame is facing the positive Z direction.", + }, + E_META_END_PORTAL_FRAME_XM_EYE = + { + Notes = "A flag in the metadata of end portal frames that indicates that the portal frame is facing the negative X direction and has an ender eye in it.", + }, + E_META_END_PORTAL_FRAME_XP_EYE = + { + Notes = "A flag in the metadata of end portal frames that indicates that the portal frame is facing the positive X direction and has an ender eye in it.", + }, + E_META_END_PORTAL_FRAME_ZM_EYE = + { + Notes = "A flag in the metadata of end portal frames that indicates that the portal frame is facing the negative Z direction and has an ender eye in it.", + }, + E_META_END_PORTAL_FRAME_ZP_EYE = + { + Notes = "A flag in the metadata of end portal frames that indicates that the portal frame is facing the positive Z direction and has an ender eye in it.", + }, E_META_HEAD_CREEPER = { Notes = "A flag in the metadata of heads that indicates that the head is a creeper head.", -- cgit v1.2.3