1
0
Fork 0

Simplified shutdown

This commit is contained in:
Tycho 2014-02-05 10:39:33 -08:00
parent de7e84b45b
commit 670213b48d
2 changed files with 1 additions and 5 deletions

View File

@ -3,7 +3,7 @@ compiler:
- gcc
- clang
# Build MCServer
script: cmake . -DCMAKE_BUILD_TYPE=RELEASE -DSELF_TEST=1 && make -j 2 && cd MCServer/ && ./MCServer
script: cmake . -DCMAKE_BUILD_TYPE=RELEASE -DSELF_TEST=1 && make -j 2 && cd MCServer/ && (echo stop | ./MCServer)
# Notification Settings
notifications:

View File

@ -172,10 +172,6 @@ void cPluginManager::InsertDefaultPlugins(cIniFile & a_SettingsIni)
a_SettingsIni.AddValue("Plugins", "Plugin", "Core");
a_SettingsIni.AddValue("Plugins", "Plugin", "TransAPI");
a_SettingsIni.AddValue("Plugins", "Plugin", "ChatLog");
#ifdef SELFTEST
a_SettingsIni.AddValue("Plugins", "Plugin", "SelfTest");
#endif
}