summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAaron Marks <nymacro@gmail.com>2005-05-10 11:57:53 +0000
committerAaron Marks <nymacro@gmail.com>2005-05-10 11:57:53 +0000
commit846784f652e9b30b67c04bfa800be1448c8a15e7 (patch)
tree1d03f92e34a5fb179bb93471b55d5b49f141484b /src/main.cpp
parentef30b72e8ad5379a7c7ee49b0ff680bde15daa66 (diff)
downloadmanaserv-846784f652e9b30b67c04bfa800be1448c8a15e7.tar.gz
manaserv-846784f652e9b30b67c04bfa800be1448c8a15e7.tar.bz2
manaserv-846784f652e9b30b67c04bfa800be1448c8a15e7.tar.xz
manaserv-846784f652e9b30b67c04bfa800be1448c8a15e7.zip
Updated scripting interface & added some class documentation.
- Updated Squirrel scripting interface. - Added registerFunction which will register a function for the specified scripting VM.
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp
index d30501b1..db9b6ae7 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -106,14 +106,10 @@ void initialize()
// Initialize scripting subsystem
#ifdef SCRIPT_SUPPORT
-
logger->log("Script Language %s", scriptLanguage.c_str());
if (scriptLanguage == "squirrel")
- {
script = new ScriptSquirrel("main.nut");
- script->init();
- }
#endif
}