Compare commits

..

No commits in common. "main" and "20240917161132" have entirely different histories.

3 changed files with 3 additions and 2 deletions

View file

@ -9,7 +9,7 @@ on:
jobs: jobs:
publish: publish:
runs-on: docker runs-on: ubuntu-latest
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v3 uses: actions/checkout@v3

View file

@ -24,4 +24,5 @@ public class PreChecks {
migration.migrateData(); migration.migrateData();
} }
} }
} }

View file

@ -16,7 +16,7 @@ import org.apache.commons.codec.binary.Base64;
public class DecryptXOR { public class DecryptXOR {
private static final String[] SAVES = {"CCGameManager.dat"}; private static final String[] SAVES = {"CCGameManager.dat"};
private static final int XOR_KEY = 11; private static final int XOR_KEY = 11;
private static byte[] xor(byte[] data, int key) { private static byte[] xor(byte[] data, int key) {