mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 04:20:41 +00: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
2 changed files with 3 additions and 2 deletions
|
@ -186,3 +186,4 @@ v 2.0:
|
|||
- Allow 'manucheckp' to notify when superperms reports false but it is really negated.
|
||||
- Only output a Data update message if something has changed.
|
||||
- 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
|
||||
*/
|
||||
for (File folder : worldsFolder.listFiles()) {
|
||||
if (folder.isDirectory()) {
|
||||
if (folder.isDirectory() && !folder.getName().startsWith(".")) {
|
||||
GroupManager.logger.info("World Found: " + folder.getName());
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue