summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHowaner <franzi.moos@googlemail.com>2015-02-06 21:44:53 +0100
committerHowaner <franzi.moos@googlemail.com>2015-02-07 10:46:01 +0100
commitd36e8ffd778c58e1d77d6aa57eb16f0de5cd9fb4 (patch)
tree8a1491b20190f239b77b8bb084ea1c3c5f26e94d
parentcPlayer should override IsOnGround() (diff)
downloadcuberite-d36e8ffd778c58e1d77d6aa57eb16f0de5cd9fb4.tar
cuberite-d36e8ffd778c58e1d77d6aa57eb16f0de5cd9fb4.tar.gz
cuberite-d36e8ffd778c58e1d77d6aa57eb16f0de5cd9fb4.tar.bz2
cuberite-d36e8ffd778c58e1d77d6aa57eb16f0de5cd9fb4.tar.lz
cuberite-d36e8ffd778c58e1d77d6aa57eb16f0de5cd9fb4.tar.xz
cuberite-d36e8ffd778c58e1d77d6aa57eb16f0de5cd9fb4.tar.zst
cuberite-d36e8ffd778c58e1d77d6aa57eb16f0de5cd9fb4.zip
-rw-r--r--MCServer/Plugins/APIDump/APIDesc.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/MCServer/Plugins/APIDump/APIDesc.lua b/MCServer/Plugins/APIDump/APIDesc.lua
index b2c7108e9..4c8dbd1e9 100644
--- a/MCServer/Plugins/APIDump/APIDesc.lua
+++ b/MCServer/Plugins/APIDump/APIDesc.lua
@@ -844,6 +844,7 @@ end</pre>
IsMinecart = { Params = "", Return = "bool", Notes = "Returns true if the entity represents a {{cMinecart|minecart}}" },
IsMob = { Params = "", Return = "bool", Notes = "Returns true if the entity represents any {{cMonster|mob}}." },
IsOnFire = { Params = "", Return = "bool", Notes = "Returns true if the entity is on fire" },
+ IsOnGround = { Params = "", Return = "bool", Notes = "Returns true if the entity is on ground (not falling, not jumping, not flying)" },
IsPainting = { Params = "", Return = "bool", Notes = "Returns if this entity is a painting." },
IsPawn = { Params = "", Return = "bool", Notes = "Returns true if the entity is a {{cPawn}} descendant." },
IsPickup = { Params = "", Return = "bool", Notes = "Returns true if the entity represents a {{cPickup|pickup}}." },
@@ -1832,7 +1833,6 @@ a_Player:OpenWindow(Window);
IsGameModeSpectator = { Params = "", Return = "bool", Notes = "Returns true if the player is in the gmSpectator gamemode, or has their gamemode unset and the world is a gmSpectator world." },
IsGameModeSurvival = { Params = "", Return = "bool", Notes = "Returns true if the player is in the gmSurvival gamemode, or has their gamemode unset and the world is a gmSurvival world." },
IsInBed = { Params = "", Return = "bool", Notes = "Returns true if the player is currently lying in a bed." },
- IsOnGround = { Params = "", Return = "bool", Notes = "Returns true if the player is on ground (not falling, not jumping, not flying)" },
IsSatiated = { Params = "", Return = "bool", Notes = "Returns true if the player is satiated (cannot eat)." },
IsVisible = { Params = "", Return = "bool", Notes = "Returns true if the player is visible to other players" },
LoadRank = { Params = "", Return = "", Notes = "Reloads the player's rank, message visuals and permissions from the {{cRankManager}}, based on the player's current rank." },