summaryrefslogtreecommitdiffstats
path: root/src/scripting/luascript.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripting/luascript.h')
-rw-r--r--src/scripting/luascript.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/scripting/luascript.h b/src/scripting/luascript.h
index 955fe21..7631d98 100644
--- a/src/scripting/luascript.h
+++ b/src/scripting/luascript.h
@@ -54,7 +54,7 @@ class LuaScript : public Script
void push(const std::string &);
- void push(Thing *);
+ void push(Entity *);
void push(const std::list<InventoryItem> &itemList);
@@ -75,9 +75,9 @@ class LuaScript : public Script
const std::string &letter,
Script *);
- void processDeathEvent(Being *thing);
+ void processDeathEvent(Being *entity);
- void processRemoveEvent(Thing *thing);
+ void processRemoveEvent(Entity *entity);
static void setDeathNotificationCallback(Script *script)