summaryrefslogtreecommitdiff
path: root/src/cat/LuaScriptInterface.cpp
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2013-03-16 17:45:45 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2013-03-16 17:45:45 (GMT)
commitb4564f212a17539604e9fa63d649e157f8888eb1 (patch)
tree9ed998180f825d79eaa753c28b34136822a8c928 /src/cat/LuaScriptInterface.cpp
parentf05044ab68e51ce9c374f6af09284051efcda449 (diff)
parent3a738846a3e0c59ed02805f11f93678ae42a946e (diff)
downloadpowder-b4564f212a17539604e9fa63d649e157f8888eb1.zip
powder-b4564f212a17539604e9fa63d649e157f8888eb1.tar.gz
Merge branch 'master' of github.com:FacialTurd/The-Powder-Toy
Diffstat (limited to 'src/cat/LuaScriptInterface.cpp')
-rw-r--r--src/cat/LuaScriptInterface.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cat/LuaScriptInterface.cpp b/src/cat/LuaScriptInterface.cpp
index 33e10d2..79c79a1 100644
--- a/src/cat/LuaScriptInterface.cpp
+++ b/src/cat/LuaScriptInterface.cpp
@@ -1141,6 +1141,13 @@ void LuaScriptInterface::initElementsAPI()
{
lua_pushinteger(l, i);
lua_setfield(l, elementsAPI, luacon_sim->elements[i].Identifier);
+ char realIdentifier[20];
+ sprintf(realIdentifier, "DEFAULT_PT_%s", luacon_sim->elements[i].Name);
+ if (i != 0 && i != PT_NBHL && i != PT_NWHL && strcmp(luacon_sim->elements[i].Identifier, realIdentifier))
+ {
+ lua_pushinteger(l, i);
+ lua_setfield(l, elementsAPI, realIdentifier);
+ }
}
}
}