summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-02-17 23:36:39 +0100
committermadmaxoft <github@xoft.cz>2014-02-17 23:36:39 +0100
commit1a26f05ed0e81cb0c2cbd17ee4eb6022f094438e (patch)
tree701c0f0cdc3fedf921b98fa32b9672d0d5bf7a1e /src
parentAdd Lua plugin path to package.path and .cpath. (diff)
downloadcuberite-1a26f05ed0e81cb0c2cbd17ee4eb6022f094438e.tar
cuberite-1a26f05ed0e81cb0c2cbd17ee4eb6022f094438e.tar.gz
cuberite-1a26f05ed0e81cb0c2cbd17ee4eb6022f094438e.tar.bz2
cuberite-1a26f05ed0e81cb0c2cbd17ee4eb6022f094438e.tar.lz
cuberite-1a26f05ed0e81cb0c2cbd17ee4eb6022f094438e.tar.xz
cuberite-1a26f05ed0e81cb0c2cbd17ee4eb6022f094438e.tar.zst
cuberite-1a26f05ed0e81cb0c2cbd17ee4eb6022f094438e.zip
Diffstat (limited to 'src')
-rw-r--r--src/Bindings/PluginManager.cpp2
-rw-r--r--src/Bindings/PluginManager.h4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/Bindings/PluginManager.cpp b/src/Bindings/PluginManager.cpp
index c6c8c081e..c7df6357e 100644
--- a/src/Bindings/PluginManager.cpp
+++ b/src/Bindings/PluginManager.cpp
@@ -56,7 +56,7 @@ void cPluginManager::ReloadPlugins(void)
void cPluginManager::FindPlugins(void)
{
- AString PluginsPath = FILE_IO_PREFIX + AString( "Plugins/" );
+ AString PluginsPath = GetPluginsPath() + "/";
// First get a clean list of only the currently running plugins, we don't want to mess those up
for (PluginMap::iterator itr = m_Plugins.begin(); itr != m_Plugins.end();)
diff --git a/src/Bindings/PluginManager.h b/src/Bindings/PluginManager.h
index c78bceda1..44bc5a8d7 100644
--- a/src/Bindings/PluginManager.h
+++ b/src/Bindings/PluginManager.h
@@ -266,6 +266,10 @@ public: // tolua_export
Returns false if plugin not found, and the value that the callback has returned otherwise. */
bool DoWithPlugin(const AString & a_PluginName, cPluginCallback & a_Callback);
+ /** Returns the path where individual plugins' folders are expected.
+ The path doesn't end in a slash. */
+ static AString GetPluginsPath(void) { return FILE_IO_PREFIX + AString("Plugins"); } // tolua_export
+
private:
friend class cRoot;