diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/script_system.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/script_system.cpp b/src/script_system.cpp index 18a4e39..1846de2 100644 --- a/src/script_system.cpp +++ b/src/script_system.cpp | |||
@@ -201,6 +201,12 @@ ScriptSystem::ScriptSystem(Game& game) : game_(game) { | |||
201 | return std::bernoulli_distribution(p)(game_.getRng()); | 201 | return std::bernoulli_distribution(p)(game_.getRng()); |
202 | }); | 202 | }); |
203 | 203 | ||
204 | engine_.set_function( | ||
205 | "loadMapScripts", | ||
206 | [&] (std::string filename) { | ||
207 | loadMapScripts(filename); | ||
208 | }); | ||
209 | |||
204 | engine_.script_file("../res/scripts/common.lua"); | 210 | engine_.script_file("../res/scripts/common.lua"); |
205 | } | 211 | } |
206 | 212 | ||