summaryrefslogtreecommitdiff
path: root/src/game-server/main-game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game-server/main-game.cpp')
-rw-r--r--src/game-server/main-game.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game-server/main-game.cpp b/src/game-server/main-game.cpp
index 6383a9ec..831dc9f1 100644
--- a/src/game-server/main-game.cpp
+++ b/src/game-server/main-game.cpp
@@ -44,6 +44,7 @@
#include "utils/logger.h"
#include "utils/stringfilter.h"
#include "utils/timer.h"
+#include "utils/mathutils.h"
// Scripting
#ifdef SCRIPT_SUPPORT
@@ -206,6 +207,9 @@ void initialize()
#else
LOG_WARN("No scripting language support.");
#endif
+
+ // Pre-calulate the needed trigomic function values
+ utils::math::init();
}