diff options
author | Howaner <franzi.moos@googlemail.com> | 2014-09-02 20:10:41 +0200 |
---|---|---|
committer | Howaner <franzi.moos@googlemail.com> | 2014-09-02 20:10:41 +0200 |
commit | 38e824dbcfa66ee63670f6e8aa708e7a4aa58f5e (patch) | |
tree | 0d57c7ff7237e084644cf40a9f5c371bb6412643 /MCServer/Plugins/APIDump/APIDesc.lua | |
parent | Merge branch 'master' into Effects (diff) | |
download | cuberite-38e824dbcfa66ee63670f6e8aa708e7a4aa58f5e.tar cuberite-38e824dbcfa66ee63670f6e8aa708e7a4aa58f5e.tar.gz cuberite-38e824dbcfa66ee63670f6e8aa708e7a4aa58f5e.tar.bz2 cuberite-38e824dbcfa66ee63670f6e8aa708e7a4aa58f5e.tar.lz cuberite-38e824dbcfa66ee63670f6e8aa708e7a4aa58f5e.tar.xz cuberite-38e824dbcfa66ee63670f6e8aa708e7a4aa58f5e.tar.zst cuberite-38e824dbcfa66ee63670f6e8aa708e7a4aa58f5e.zip |
Diffstat (limited to '')
-rw-r--r-- | MCServer/Plugins/APIDump/APIDesc.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua index 337ce47c3..18fb7acad 100644 --- a/MCServer/Plugins/APIDump/APIDesc.lua +++ b/MCServer/Plugins/APIDump/APIDesc.lua @@ -1636,8 +1636,8 @@ a_Player:OpenWindow(Window); MobTypeToString = { Params = "{{cMonster#MobType|MobType}}", Return = "string", Notes = "(STATIC) Returns the string representing the given mob type ({{cMonster#MobType|mtXXX}} constant), or empty string if unknown type." }, MoveToPosition = { Params = "Position", Return = "", Notes = "Moves mob to the specified position" }, StringToMobType = { Params = "string", Return = "{{cMonster#MobType|MobType}}", Notes = "(STATIC) Returns the mob type ({{cMonster#MobType|mtXXX}} constant) parsed from the string type (\"creeper\"), or mtInvalidType if unrecognized." }, - GetWalkSpeed = { Params = "", Return = "number", Notes = "Returns the walk speed of this mob. Standard is 1.0" }, - SetWalkSpeed = { Params = "number", Return = "", Notes = "Sets the walk speed of this mob. Standard is 1.0" }, + GetRelativeWalkSpeed = { Params = "", Return = "number", Notes = "Returns the relative walk speed of this mob. Standard is 1.0" }, + SetRelativeWalkSpeed = { Params = "number", Return = "", Notes = "Sets the relative walk speed of this mob. Standard is 1.0" }, }, Constants = { |