summaryrefslogtreecommitdiff
path: root/src/script/squirrel.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/script/squirrel.hpp')
-rw-r--r--src/script/squirrel.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/script/squirrel.hpp b/src/script/squirrel.hpp
index dbccd3c08..4e31d3247 100644
--- a/src/script/squirrel.hpp
+++ b/src/script/squirrel.hpp
@@ -16,7 +16,8 @@
/** The type of script we're working with, i.e. for who is it? */
enum ScriptType {
- ST_AI, ///< The script is for the AI.
+ ST_AI, ///< The script is for AI scripts.
+ ST_GS, ///< The script is for Game scripts.
};
class Squirrel {