Skip to content

Commit ec120ae

Browse files
committed
Fix old and new player folders being swapped.
1 parent be80939 commit ec120ae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

regionfixer_core/world.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -751,8 +751,8 @@ def __init__(self, world_path):
751751
"The file doesn't exist")
752752

753753
# Player files
754-
PLAYERS_DIRECTORY = 'players'
755-
OLD_PLAYERS_DIRECTORY = ' playerdata'
754+
PLAYERS_DIRECTORY = 'playerdata'
755+
OLD_PLAYERS_DIRECTORY = ' players'
756756
STRUCTURES_DIRECTORY = 'data'
757757

758758
self.players = DataFileSet(join(self.path, PLAYERS_DIRECTORY),

0 commit comments

Comments
 (0)