summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Pioch <lukas@zgow.de>2017-08-04 09:54:13 +0200
committerLukas Pioch <lukas@zgow.de>2017-08-27 14:54:43 +0200
commit28e4997b0d88d54c009bbb7f7c04daccb8a1aa5a (patch)
tree935982c97239a965d91a32a1123ed7452a1b17e5
parentRemoved const again (diff)
downloadcuberite-28e4997b0d88d54c009bbb7f7c04daccb8a1aa5a.tar
cuberite-28e4997b0d88d54c009bbb7f7c04daccb8a1aa5a.tar.gz
cuberite-28e4997b0d88d54c009bbb7f7c04daccb8a1aa5a.tar.bz2
cuberite-28e4997b0d88d54c009bbb7f7c04daccb8a1aa5a.tar.lz
cuberite-28e4997b0d88d54c009bbb7f7c04daccb8a1aa5a.tar.xz
cuberite-28e4997b0d88d54c009bbb7f7c04daccb8a1aa5a.tar.zst
cuberite-28e4997b0d88d54c009bbb7f7c04daccb8a1aa5a.zip
-rw-r--r--Server/Plugins/APIDump/APIDesc.lua2
-rw-r--r--Server/Plugins/APIDump/Hooks/OnPlayerEditedBook.lua4
-rw-r--r--Server/Plugins/APIDump/Hooks/OnPlayerEditingBook.lua4
3 files changed, 5 insertions, 5 deletions
diff --git a/Server/Plugins/APIDump/APIDesc.lua b/Server/Plugins/APIDump/APIDesc.lua
index 01bd5f42e..73443aa41 100644
--- a/Server/Plugins/APIDump/APIDesc.lua
+++ b/Server/Plugins/APIDump/APIDesc.lua
@@ -6948,7 +6948,7 @@ These ItemGrids are available in the API and can be manipulated by the plugins,
},
m_Enchantments =
{
- Type = "{{cEnchantments|cEnchantments}}",
+ Type = "cEnchantments",
Notes = "The enchantments of the item.",
},
m_ItemCount =
diff --git a/Server/Plugins/APIDump/Hooks/OnPlayerEditedBook.lua b/Server/Plugins/APIDump/Hooks/OnPlayerEditedBook.lua
index 11e8dcea1..9a6c0bc8c 100644
--- a/Server/Plugins/APIDump/Hooks/OnPlayerEditedBook.lua
+++ b/Server/Plugins/APIDump/Hooks/OnPlayerEditedBook.lua
@@ -11,8 +11,8 @@ return
]],
Params =
{
- { Name = "Player", Type = "{{cPlayer}}", Notes = "The player that edited the book" },
- { Name = "BookContent", Type = "{{cBookContent}}", Notes = "The class that contains the current info of the book" },
+ { Name = "Player", Type = "cPlayer", Notes = "The player that edited the book" },
+ { Name = "BookContent", Type = "cBookContent", Notes = "The class that contains the current info of the book" },
{ Name = "IsSigned", Type = "boolean", Notes = "Player has signed the book" },
},
Returns = [[
diff --git a/Server/Plugins/APIDump/Hooks/OnPlayerEditingBook.lua b/Server/Plugins/APIDump/Hooks/OnPlayerEditingBook.lua
index b911aaa54..455bf4f69 100644
--- a/Server/Plugins/APIDump/Hooks/OnPlayerEditingBook.lua
+++ b/Server/Plugins/APIDump/Hooks/OnPlayerEditingBook.lua
@@ -11,8 +11,8 @@ return
]],
Params =
{
- { Name = "Player", Type = "{{cPlayer}}", Notes = "The player that is editing the book" },
- { Name = "BookContent", Type = "{{cBookContent}}", Notes = "The class that contains the current info of the book" },
+ { Name = "Player", Type = "cPlayer", Notes = "The player that is editing the book" },
+ { Name = "BookContent", Type = "cBookContent", Notes = "The class that contains the current info of the book" },
{ Name = "IsSigned", Type = "boolean", Notes = "Player is signing the book" },
},
Returns = [[