mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-11-24 19:45:43 +01:00
Fix fix of /dxl rename
This commit is contained in:
parent
ceb1df58b1
commit
7ace66d8df
@ -57,6 +57,7 @@ public class RenameCommand extends DCommand {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Dungeon sfd = resource.getSingleFloorDungeon();
|
||||||
resource.setName(args[2]);
|
resource.setName(args[2]);
|
||||||
resource.getFolder().renameTo(new File(DungeonsXL.MAPS, args[2]));
|
resource.getFolder().renameTo(new File(DungeonsXL.MAPS, args[2]));
|
||||||
resource.getSignData().updateFile(resource);
|
resource.getSignData().updateFile(resource);
|
||||||
@ -96,9 +97,9 @@ public class RenameCommand extends DCommand {
|
|||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
resource.getSingleFloorDungeon().setName(args[2]);
|
sfd.setName(args[2]);
|
||||||
plugin.getDungeonRegistry().removeKey(args[1]);
|
plugin.getDungeonRegistry().removeKey(args[1]);
|
||||||
plugin.getDungeonRegistry().add(args[2], resource.getSingleFloorDungeon());
|
plugin.getDungeonRegistry().add(args[2], sfd);
|
||||||
plugin.getMapRegistry().removeKey(args[1]);
|
plugin.getMapRegistry().removeKey(args[1]);
|
||||||
plugin.getMapRegistry().add(args[2], resource);
|
plugin.getMapRegistry().add(args[2], resource);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user