diff options
author | x12xx12x <44411062+12xx12@users.noreply.github.com> | 2022-05-07 01:26:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-07 01:26:13 +0200 |
commit | 63b63c5d844e8702fce2ae0181ee4397b8954d92 (patch) | |
tree | 53bcb25743271beb6b5e51b2346847ed50c6f925 /Server/Plugins/APIDump/Classes | |
parent | Implement ranged attack for snow golems. Fix failed assertion (#5417) (diff) | |
download | cuberite-63b63c5d844e8702fce2ae0181ee4397b8954d92.tar cuberite-63b63c5d844e8702fce2ae0181ee4397b8954d92.tar.gz cuberite-63b63c5d844e8702fce2ae0181ee4397b8954d92.tar.bz2 cuberite-63b63c5d844e8702fce2ae0181ee4397b8954d92.tar.lz cuberite-63b63c5d844e8702fce2ae0181ee4397b8954d92.tar.xz cuberite-63b63c5d844e8702fce2ae0181ee4397b8954d92.tar.zst cuberite-63b63c5d844e8702fce2ae0181ee4397b8954d92.zip |
Diffstat (limited to 'Server/Plugins/APIDump/Classes')
-rw-r--r-- | Server/Plugins/APIDump/Classes/Geometry.lua | 57 | ||||
-rw-r--r-- | Server/Plugins/APIDump/Classes/Projectiles.lua | 10 |
2 files changed, 0 insertions, 67 deletions
diff --git a/Server/Plugins/APIDump/Classes/Geometry.lua b/Server/Plugins/APIDump/Classes/Geometry.lua index 9d289632c..1fe9090ac 100644 --- a/Server/Plugins/APIDump/Classes/Geometry.lua +++ b/Server/Plugins/APIDump/Classes/Geometry.lua @@ -1192,10 +1192,6 @@ end { Notes = "Updates each coord to its absolute value.", }, - abs = - { - Notes = "<b>OBSOLETE</b>, use Abs() instead.", - }, addedX = { Params = @@ -1293,21 +1289,6 @@ end }, Notes = "Clamps each coord into the specified range.", }, - clamp = - { - Params = - { - { - Name = "min", - Type = "number", - }, - { - Name = "max", - Type = "number", - }, - }, - Notes = "<b>OBSOLETE</b>, use Clamp() instead.", - }, constructor = { { @@ -1772,10 +1753,6 @@ end { Notes = "Updates each coord to its absolute value.", }, - abs = - { - Notes = "<b>OBSOLETE</b>, use Abs() instead.", - }, addedX = { Params = @@ -1873,21 +1850,6 @@ end }, Notes = "Clamps each coord into the specified range.", }, - clamp = - { - Params = - { - { - Name = "min", - Type = "number", - }, - { - Name = "max", - Type = "number", - }, - }, - Notes = "<b>OBSOLETE</b>, use Clamp() instead.", - }, constructor = { { @@ -2384,10 +2346,6 @@ end { Notes = "Updates each coord to its absolute value.", }, - abs = - { - Notes = "<b>OBSOLETE</b>, use Abs() instead.", - }, addedX = { Params = @@ -2485,21 +2443,6 @@ end }, Notes = "Clamps each coord into the specified range.", }, - clamp = - { - Params = - { - { - Name = "min", - Type = "number", - }, - { - Name = "max", - Type = "number", - }, - }, - Notes = "<b>OBSOLETE</b>, use Clamp() instead.", - }, constructor = { { diff --git a/Server/Plugins/APIDump/Classes/Projectiles.lua b/Server/Plugins/APIDump/Classes/Projectiles.lua index f74b92136..b3bf7fbed 100644 --- a/Server/Plugins/APIDump/Classes/Projectiles.lua +++ b/Server/Plugins/APIDump/Classes/Projectiles.lua @@ -215,16 +215,6 @@ return Desc = "Base class for all projectiles, such as arrows and fireballs.", Functions = { - GetCreator = - { - Returns = - { - { - Type = "cEntity", - }, - }, - Notes = "Returns the entity who created this projectile. May return nil.", - }, GetCreatorName = { Returns = |