mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-02 17:09:58 +01:00
Ignore any sub folders in the Worlds folder which start with a period
(fix for storing data in svn respoitories).
This commit is contained in:
parent
51d61e7a91
commit
24ec84730e
@ -186,3 +186,4 @@ v 2.0:
|
|||||||
- Allow 'manucheckp' to notify when superperms reports false but it is really negated.
|
- Allow 'manucheckp' to notify when superperms reports false but it is really negated.
|
||||||
- Only output a Data update message if something has changed.
|
- Only output a Data update message if something has changed.
|
||||||
- Fix loading users with only numerals in their names to be seen as strings.
|
- Fix loading users with only numerals in their names to be seen as strings.
|
||||||
|
- Ignore any sub folders in the Worlds folder which start with a period (fix for storing data in svn respoitories).
|
@ -105,7 +105,7 @@ public class WorldsHolder {
|
|||||||
* and attempt to load the world data
|
* and attempt to load the world data
|
||||||
*/
|
*/
|
||||||
for (File folder : worldsFolder.listFiles()) {
|
for (File folder : worldsFolder.listFiles()) {
|
||||||
if (folder.isDirectory()) {
|
if (folder.isDirectory() && !folder.getName().startsWith(".")) {
|
||||||
GroupManager.logger.info("World Found: " + folder.getName());
|
GroupManager.logger.info("World Found: " + folder.getName());
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user