Skip to content

"fml.doNotBackup" system property not respected #29

@tiffit

Description

@tiffit

try {
ZipperUtil.backupWorld();
} catch (IOException e) {
StartupQuery.notify("The world backup couldn't be created.\n\n" + e);
StartupQuery.abort();
}

This code does not do the check for "fml.doNotBackup" that FML does:

String skip = System.getProperty("fml.doNotBackup");
if (skip == null || !"true".equals(skip))
{
    ZipperUtil.backupWorld();
}

The same check should be added to ChunkAPI

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions