mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-12-19 11:48:05 +00:00
Add command to reload config from disk
Also bump version number, as we're relatively close to a release and it's frustrating having to bump it when putting out previews.
This commit is contained in:
@@ -346,6 +346,20 @@ public final class CommandComputerCraft extends CommandDelegate
|
||||
displayTimings( context );
|
||||
}
|
||||
} );
|
||||
|
||||
root.register( new SubCommandBase(
|
||||
"reload", "Reload the ComputerCraft config file", UserLevel.OWNER_OP,
|
||||
"Reload the ComputerCraft config file"
|
||||
)
|
||||
{
|
||||
@Override
|
||||
public void execute( @Nonnull CommandContext context, @Nonnull List<String> arguments )
|
||||
{
|
||||
ComputerCraft.loadConfig();
|
||||
ComputerCraft.syncConfig();
|
||||
context.getSender().sendMessage( new TextComponentString( "Reloaded config" ) );
|
||||
}
|
||||
} );
|
||||
|
||||
|
||||
return root;
|
||||
|
||||
Reference in New Issue
Block a user