diff options
author | Zach DeCook <zachdecook@gmail.com> | 2019-05-11 21:43:26 +0200 |
---|---|---|
committer | peterbell10 <peterbell10@live.co.uk> | 2019-05-11 21:43:26 +0200 |
commit | 24a8456f79aa35cfe8c3859c880e1bffeae088c6 (patch) | |
tree | 58514d88b25a7771827211fbcf8d547f523de2eb /Server | |
parent | Buckets: Be able to place fluids through other fluids. (#4331) (diff) | |
download | cuberite-24a8456f79aa35cfe8c3859c880e1bffeae088c6.tar cuberite-24a8456f79aa35cfe8c3859c880e1bffeae088c6.tar.gz cuberite-24a8456f79aa35cfe8c3859c880e1bffeae088c6.tar.bz2 cuberite-24a8456f79aa35cfe8c3859c880e1bffeae088c6.tar.lz cuberite-24a8456f79aa35cfe8c3859c880e1bffeae088c6.tar.xz cuberite-24a8456f79aa35cfe8c3859c880e1bffeae088c6.tar.zst cuberite-24a8456f79aa35cfe8c3859c880e1bffeae088c6.zip |
Diffstat (limited to '')
-rw-r--r-- | Server/Plugins/APIDump/APIDesc.lua | 40 |
1 files changed, 40 insertions, 0 deletions
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.", |