1
0

Changed name and put the whitespace back, as per xoft's suggestion.

This commit is contained in:
Alexander Harkness 2013-07-30 16:26:06 +01:00
parent 23b9f83fac
commit e57b4e1e59
2 changed files with 22 additions and 3 deletions

View File

@ -1,11 +1,15 @@
-- Global variables
PLUGIN = {}; -- Reference to own plugin object
function Initialize(Plugin)
PLUGIN = Plugin
Plugin:SetName("DumpAPI")
Plugin:SetName("APIDump")
Plugin:SetVersion(1)
PluginManager = cRoot:Get():GetPluginManager()
@ -17,6 +21,11 @@ function Initialize(Plugin)
return true
end
function DumpAPI()
LOG("Dumping all available functions to API.txt...");
function dump (prefix, a, Output)

View File

@ -1,9 +1,14 @@
-- Global variables
PLUGIN = {}; -- Reference to own plugin object
g_DropSpensersToActivate = {}; -- A list of dispensers and droppers (as {World, X, Y Z} quadruplets) that are to be activated every tick
g_HungerReportTick = 10;
function Initialize(Plugin)
PLUGIN = Plugin
@ -41,6 +46,11 @@ function Initialize(Plugin)
return true
end;
function TestBlockAreas()
LOG("Testing block areas...");