summaryrefslogtreecommitdiff
path: root/src/script/api/script_execmode.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/api/script_execmode.hpp')
-rw-r--r--src/script/api/script_execmode.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/script/api/script_execmode.hpp b/src/script/api/script_execmode.hpp
index 4772251d7..8dfa00938 100644
--- a/src/script/api/script_execmode.hpp
+++ b/src/script/api/script_execmode.hpp
@@ -21,10 +21,10 @@
* instance is destroyed.
* In Execute mode all commands you do are executed for real.
*/
-class AIExecMode : public AIObject {
+class ScriptExecMode : public ScriptObject {
private:
AIModeProc *last_mode; ///< The previous mode we were in.
- AIObject *last_instance; ///< The previous instace of the mode.
+ ScriptObject *last_instance; ///< The previous instace of the mode.
protected:
/**
@@ -38,13 +38,13 @@ public:
* @note When the instance is destroyed, he restores the mode that was
* current when the instance was created!
*/
- AIExecMode();
+ ScriptExecMode();
/**
* Destroying this instance reset the building mode to the mode it was
* in when the instance was created.
*/
- ~AIExecMode();
+ ~ScriptExecMode();
};
#endif /* SCRIPT_EXECMODE_HPP */