diff options
author | Mattes D <github@xoft.cz> | 2016-10-04 12:36:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-04 12:36:47 +0200 |
commit | 0b089112869012b7dda47e10b32a2472258887f9 (patch) | |
tree | 041a6a1d4635abeb95d7b2be41fd65a9691a5d14 /Server/Plugins/APIDump/Classes | |
parent | APIDump: Fixed description for schematic file loading. (diff) | |
parent | APIDump: Check param and return types. (diff) | |
download | cuberite-0b089112869012b7dda47e10b32a2472258887f9.tar cuberite-0b089112869012b7dda47e10b32a2472258887f9.tar.gz cuberite-0b089112869012b7dda47e10b32a2472258887f9.tar.bz2 cuberite-0b089112869012b7dda47e10b32a2472258887f9.tar.lz cuberite-0b089112869012b7dda47e10b32a2472258887f9.tar.xz cuberite-0b089112869012b7dda47e10b32a2472258887f9.tar.zst cuberite-0b089112869012b7dda47e10b32a2472258887f9.zip |
Diffstat (limited to 'Server/Plugins/APIDump/Classes')
-rw-r--r-- | Server/Plugins/APIDump/Classes/BlockEntities.lua | 4 | ||||
-rw-r--r-- | Server/Plugins/APIDump/Classes/WebAdmin.lua | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Server/Plugins/APIDump/Classes/BlockEntities.lua b/Server/Plugins/APIDump/Classes/BlockEntities.lua index 3f3552c99..7616d7180 100644 --- a/Server/Plugins/APIDump/Classes/BlockEntities.lua +++ b/Server/Plugins/APIDump/Classes/BlockEntities.lua @@ -1254,7 +1254,7 @@ World:ForEachChestInChunk(Player:GetChunkX(), Player:GetChunkZ(), { { Name = "MobType", - Type = "Globals#MobType", + Type = "eMonsterType", }, }, Notes = "Returns the entity type that will be spawn by this mob spawner.", @@ -1306,7 +1306,7 @@ World:ForEachChestInChunk(Player:GetChunkX(), Player:GetChunkZ(), { { Name = "MobType", - Type = "Globals#MobType", + Type = "eMonsterType", }, }, Notes = "Sets the type of the mob that will be spawned by this mob spawner.", diff --git a/Server/Plugins/APIDump/Classes/WebAdmin.lua b/Server/Plugins/APIDump/Classes/WebAdmin.lua index faa81dc82..583278e5f 100644 --- a/Server/Plugins/APIDump/Classes/WebAdmin.lua +++ b/Server/Plugins/APIDump/Classes/WebAdmin.lua @@ -96,8 +96,8 @@ return Params = { { - Name = "HTTPRequest", - Type = "Request", + Name = "Request", + Type = "HTTPRequest", }, }, Returns = |