mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-04 22:40:05 +00:00
dongresource
d4d0f388c4
* Monkey Skyway paths are now saved in a format compatible with paths.json * flush() is called on every periodic DB save in addition to the /flush and /mss N export commands * Monkeys now accept WIP routes
27 lines
645 B
C++
27 lines
645 B
C++
#pragma once
|
|
|
|
namespace settings {
|
|
extern int VERBOSITY;
|
|
extern int LOGINPORT;
|
|
extern bool APPROVEALLNAMES;
|
|
extern int DBSAVEINTERVAL;
|
|
extern int SHARDPORT;
|
|
extern std::string SHARDSERVERIP;
|
|
extern time_t TIMEOUT;
|
|
extern int CHUNKSIZE;
|
|
extern bool SIMULATEMOBS;
|
|
extern int SPAWN_X;
|
|
extern int SPAWN_Y;
|
|
extern int SPAWN_Z;
|
|
extern int SPAWN_ANGLE;
|
|
extern int ACCLEVEL;
|
|
extern std::string MOTDSTRING;
|
|
extern std::string NPCJSON;
|
|
extern std::string XDTJSON;
|
|
extern std::string MOBJSON;
|
|
extern std::string PATHJSON;
|
|
extern std::string GRUNTWORKJSON;
|
|
|
|
void init();
|
|
}
|