Исправление неверного синтаксиса комантария в дефолтном конфиге

This commit is contained in:
Gravit 2018-11-28 18:00:09 +07:00
parent 16803776d0
commit c12d93b435
No known key found for this signature in database
GPG key ID: 061981E1E85D3216
3 changed files with 5 additions and 2 deletions

View file

@ -45,7 +45,7 @@ textureProviderConfig: {
# Jar signing
buildExtendedOperation: {
enabled: false;
script: "java -jar myTransformer.jar %launcher-obf% %launcher-output% %launcher-nonObf%"; // The script to run
script: "java -jar myTransformer.jar %launcher-obf% %launcher-output% %launcher-nonObf%";
};
# Binaries name

View file

@ -101,7 +101,7 @@ function newTask(r) {
}
function newRequestTask(request) {
FunctionalBridge.makeRequest(request);
return newTask(function() request.request());
}
function startTask(task) {

View file

@ -40,6 +40,9 @@ public HWID getHWID() {
hwid.serialNumber = getSerial();
hwid.totalMemory = getTotalMemory();
hwid.HWDiskSerial = getHWDisk();
LogHelper.debug("serialNumber %s",hwid.serialNumber);
LogHelper.debug("totalMemory %d",hwid.totalMemory);
LogHelper.debug("HWDiskSerial %s",hwid.HWDiskSerial);
return hwid;
}
}