From bac421bb2a6505e12e0e79180f16f42b2bc4de49 Mon Sep 17 00:00:00 2001 From: JasperHorn Date: Fri, 8 May 2020 18:05:05 +0200 Subject: [PATCH] I've found that getVar can get tables I'm assuming this information was simply outdated --- docs/object.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/object.md b/docs/object.md index 5f79eaf6..073ffcd4 100644 --- a/docs/object.md +++ b/docs/object.md @@ -250,8 +250,8 @@ call([](types.md) func_name, [](types.md) | [](#getdecals) getLuaScript() | Get a Lua script as a string from the entity. | [](types.md) | getSnapPoints() | Returns a table of sub-tables, each sub-table representing one snap point. | [](types.md) | [](#getsnappoints) -getTable([](types.md) table_name) | Data value of a variable in another Object's script. Can only return a table. | [](types.md) | -getVar([](types.md) var_name) | Data value of a variable in another entity's script. Cannot return a table. | [](types.md) | +getTable([](types.md) table_name) | Data value of a variable in another Object's script. Can only return a table. This method was used because getVar could previously not return a table.| [](types.md) | +getVar([](types.md) var_name) | Data value of a variable in another entity's script. | [](types.md) | getVectorLines() | Returns Table of data representing the current Vector Lines on this entity. See [setVectorLines](#setvectorlines) for table format.| [](types.md) | setDecals([](types.md) parameters) | Sets which decals are on an object. This removes other decals already present, and can remove all decals as well. | [](types.md) | [](#setdecals) setLuaScript([](types.md) script) | Input a string as an entity's Lua script. Generally only used after spawning a new Object. | [](types.md) |