From 3a4242dac5da354ad0ce925d6b1fd7436e30eb08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 13 Sep 2020 21:58:34 +0200 Subject: [PATCH 01/39] Fixes AS structures spawning too often, fixes #484 --- defaultconfigs/astralsorcery.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/defaultconfigs/astralsorcery.toml b/defaultconfigs/astralsorcery.toml index b21e3df..ea5d357 100644 --- a/defaultconfigs/astralsorcery.toml +++ b/defaultconfigs/astralsorcery.toml @@ -703,7 +703,7 @@ maxY = 160 #Set this to set the overall chance for this feature to generate. The higher, the rarer. #Range: 1 ~ 200000 - generationChance = 90 + generationChance = 400 #Set the amount this feature tries to generate per chunk #Range: 1 ~ 128 generationAmount = 1 @@ -736,7 +736,7 @@ maxY = 200 #Set this to set the overall chance for this feature to generate. The higher, the rarer. #Range: 1 ~ 200000 - generationChance = 140 + generationChance = 250 #Set the amount this feature tries to generate per chunk #Range: 1 ~ 128 generationAmount = 1 From 5dd882ecff66f8c7d59e3033fe820ef93066cd75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 13 Sep 2020 22:05:15 +0200 Subject: [PATCH 02/39] Fixes excavator recipe annoyance, fixes #487 --- .../enigmatica/kubejs/base/recipes/remove.js | 2 +- .../enigmatica/kubejs/base/recipes/shaped.js | 4 +++ kubejs/startup/factory/blocks.js | 28 ++++++--------- kubejs/startup/materialsystem.js | 35 ------------------- 4 files changed, 16 insertions(+), 53 deletions(-) diff --git a/kubejs/data/enigmatica/kubejs/base/recipes/remove.js b/kubejs/data/enigmatica/kubejs/base/recipes/remove.js index 32a0589..317e27e 100644 --- a/kubejs/data/enigmatica/kubejs/base/recipes/remove.js +++ b/kubejs/data/enigmatica/kubejs/base/recipes/remove.js @@ -5,7 +5,7 @@ events.listen('recipes', function (event) { var outputRemovals = [ 'akashictome:tome', - + 'vanillaexcavators:stone_excavator', 'mekanism:combiner', 'mekanism:basic_combining_factory', 'mekanism:advanced_combining_factory', diff --git a/kubejs/data/enigmatica/kubejs/base/recipes/shaped.js b/kubejs/data/enigmatica/kubejs/base/recipes/shaped.js index 086cb69..3c8bf16 100644 --- a/kubejs/data/enigmatica/kubejs/base/recipes/shaped.js +++ b/kubejs/data/enigmatica/kubejs/base/recipes/shaped.js @@ -66,6 +66,10 @@ events.listen('recipes', function (event) { A: 'tetra:forged_bolt', B: 'tetra:forged_beam', C: 'tetra:metal_scrap' + }), + shapedRecipe('vanillaexcavators:stone_excavator', ['B', 'A', 'A'], { + A: '#forge:rods/wooden', + B: 'kubejs:compressed_cobblestone_1x' }) ]; diff --git a/kubejs/startup/factory/blocks.js b/kubejs/startup/factory/blocks.js index 12d0ec3..cb43cbb 100644 --- a/kubejs/startup/factory/blocks.js +++ b/kubejs/startup/factory/blocks.js @@ -1,22 +1,8 @@ events.listen('block.registry', function (event) { - materials.forEach(function (material) { - material.blockParts.forEach(function (block) { - var registryName = material.name + '_' + block.name; + // materials.forEach(function (material) { + // material.blockParts.forEach(function (block) { + // var registryName = material.name + '_' + block.name; - event - .create(registryName) - .texture('kubejs:block/' + registryName) - .material(block.material) - .harvestTool(block.harvestTool, block.harvestLevel) - .hardness(block.hardness) - .resistance(block.resistance); - }); - }); - - // oreStoneVariants.forEach(function (stoneVariant) { - // oreVariants.forEach(function (oreVariant) { - // var registryName = stoneVariant + '_' + oreVariant.name + '_ore'; - // var block = oreVariant.blockParts[0]; // event // .create(registryName) // .texture('kubejs:block/' + registryName) @@ -26,4 +12,12 @@ events.listen('block.registry', function (event) { // .resistance(block.resistance); // }); // }); + + event + .create('compressed_cobblestone_1x') + .texture('kubejs:block/compressed_cobblestone_1x') + .material(block.material.rock) + .harvestTool(TOOL_TYPE_PICKAXE) + .hardness(3.0) + .resistance(20); }); diff --git a/kubejs/startup/materialsystem.js b/kubejs/startup/materialsystem.js index 7cf1a1c..d804a27 100644 --- a/kubejs/startup/materialsystem.js +++ b/kubejs/startup/materialsystem.js @@ -3,41 +3,6 @@ var oreBlock = blockWithProperties('ore', block.material.rock, TOOL_TYPE_PICKAXE, 1, 3.0, 20.0); var oreDepositBlock = blockWithProperties('ore_deposit', block.material.earth, TOOL_TYPE_SHOVEL, 1, 3.0, 15.0); -var oreStoneVariants = [ - 'minecraft_andesite', - 'minecraft_granite', - 'create_scoria', - 'create_gabbro', - 'create_limestone', - 'create_weathered_limestone', - 'quark_jasper', - 'quark_slate', - 'quark_limestone', - 'quark_marble' -]; - -var oreVariants = [ - material('coal', 0xffffff, ['chunk'], [simpleOre(0)]), - material('iron', 0xffffff, ['chunk'], [simpleOre(1)]), - material('gold', 0xffffff, ['chunk'], [simpleOre(2)]), - material('diamond', 0xffffff, ['chunk'], [simpleOre(2)]), - material('emerald', 0xffffff, ['chunk'], [simpleOre(2)]), - material('redstone', 0xffffff, ['chunk'], [simpleOre(2)]), - material('lapis', 0xffffff, ['chunk'], [simpleOre(1)]), - material('copper', 0xffffff, ['chunk'], [simpleOre(1)]), - material('aluminum', 0xffffff, ['chunk'], [simpleOre(1)]), - material('lead', 0xffffff, ['chunk'], [simpleOre(2)]), - material('nickel', 0xffffff, ['chunk'], [simpleOre(2)]), - material('uranium', 0xffffff, ['chunk'], [simpleOre(2)]), - material('silver', 0xffffff, ['chunk'], [simpleOre(2)]), - material('osmium', 0xffffff, ['chunk'], [simpleOre(1)]), - material('tin', 0xffffff, ['chunk'], [simpleOre(1)]), - material('zinc', 0xffffff, ['chunk'], [simpleOre(2)]), - material('uraninite_small', 0xffffff, ['chunk'], [simpleOre(1)]), - material('uraninite', 0xffffff, ['chunk'], [simpleOre(2)]), - material('uraninite_dense', 0xffffff, ['chunk'], [simpleOre(2)]) -]; - var materials = [ material('aluminum', 0xb2bcc4, [], [oreDepositBlock]), material('bronze', 0xcd7f32, [], []), From bf254b2c74ae562fd6755c5681ebae247490ceb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 13 Sep 2020 22:05:59 +0200 Subject: [PATCH 03/39] Update .gitignore --- .gitignore | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 66a7dcb..1a25268 100644 --- a/.gitignore +++ b/.gitignore @@ -96,4 +96,10 @@ scripts/experiments/* config/cloth-config2/config.properties config/stepup.cfg maessentials/default_kits.json -!config/defaultoptions/options.txt \ No newline at end of file +!config/defaultoptions/options.txt +config/betteradvancements-client.toml +config/craftingtweaks-client.toml +config/defaultoptions/options.txt +config/extremesoundmuffler-client.toml +config/pneumaticcraft/ArmorFeatureStatus.cfg +config/pneumaticcraft/PneumaticArmorHUDLayout.cfg From 1e0f99008767f6f1d12f95a9d09a70967fc4eac2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 13 Sep 2020 22:06:08 +0200 Subject: [PATCH 04/39] Update minecraftinstance.json --- minecraftinstance.json | 201 +++++++++++------------------------------ 1 file changed, 52 insertions(+), 149 deletions(-) diff --git a/minecraftinstance.json b/minecraftinstance.json index a455ece..e84ab5a 100644 --- a/minecraftinstance.json +++ b/minecraftinstance.json @@ -30,7 +30,7 @@ "isUnlocked": true, "javaArgsOverride": null, "javaDirOverride": null, - "lastPlayed": "2020-09-12T20:16:12.1390459Z", + "lastPlayed": "2020-09-13T18:29:45.4681291Z", "manifest": null, "fileDate": "0001-01-01T00:00:00", "installedModpack": null, @@ -2986,21 +2986,6 @@ "fileCount": 1, "fileSize": 5445 }, - { - "folderName": "snowundertrees-1.15.2-v1.1.1.jar", - "fingerprint": 2966436560, - "fileDateHash": 651420926, - "sectionID": 8, - "individualFingerprints": [ - 2966436560 - ], - "status": 1, - "timestamp": "2020-05-19T18:38:45.854076Z", - "lastWriteTimeUtc": "2020-05-19T18:17:46.8047438Z", - "queryTimestamp": "2020-09-12T21:48:29.679181Z", - "fileCount": 1, - "fileSize": 15202 - }, { "folderName": "New World (3)", "fingerprint": 4167927626, @@ -5813,7 +5798,7 @@ "dateInstalled": "2020-09-12T17:32:05.9295389Z", "dateUpdated": "2020-09-12T18:09:59.8379576Z", "dateLastUpdateAttempted": "2020-09-12T18:09:59.8379576Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -6535,7 +6520,7 @@ "dateInstalled": "2020-09-08T11:11:16.9576376Z", "dateUpdated": "2020-09-12T07:47:01.8575471Z", "dateLastUpdateAttempted": "2020-09-12T07:47:01.8575471Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -7454,7 +7439,7 @@ "dateInstalled": "2020-09-08T11:11:17.7185877Z", "dateUpdated": "2020-09-12T07:46:36.322589Z", "dateLastUpdateAttempted": "2020-09-12T07:46:36.322589Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -12300,85 +12285,66 @@ "addonID": 255902, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2856534, - "displayName": "WitherSkeletonTweaks-1.15.1-4.0.0.jar", - "fileName": "WitherSkeletonTweaks-1.15.1-4.0.0.jar", - "fileDate": "2020-01-08T01:02:11.523Z", - "fileLength": 23313, + "id": 3055860, + "displayName": "WitherSkeletonTweaks-1.15.2-4.0.2.jar", + "fileName": "WitherSkeletonTweaks-1.15.2-4.0.2.jar", + "fileDate": "2020-09-13T00:34:58.173Z", + "fileLength": 23836, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2856/534/WitherSkeletonTweaks-1.15.1-4.0.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3055/860/WitherSkeletonTweaks-1.15.2-4.0.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { - "id": 36421019, + "id": 0, "addonId": 283644, "type": 3, - "fileId": 2856534 + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3610999240, - "type": 3 + "fingerprint": 2625522002, + "type": 0 }, { "foldername": "shadows", - "fingerprint": 1013950858, - "type": 3 + "fingerprint": 1794173746, + "type": 0 }, { "foldername": "assets", - "fingerprint": 261627687, - "type": 3 + "fingerprint": 289773037, + "type": 0 }, { "foldername": "pack.mcmeta", "fingerprint": 13905160, - "type": 3 + "type": 0 } ], - "packageFingerprint": 502794257, + "packageFingerprint": 2990812018, "gameVersion": [ - "1.15.2", - "1.15.1" - ], - "sortableGameVersion": [ - { - "gameVersionPadded": "0000000001.0000000015.0000000002", - "gameVersion": "1.15.2", - "gameVersionReleaseDate": "2020-01-22T00:00:00Z", - "gameVersionName": "1.15.2" - }, - { - "gameVersionPadded": "0000000001.0000000015.0000000001", - "gameVersion": "1.15.1", - "gameVersionReleaseDate": "2019-12-17T00:00:00Z", - "gameVersionName": "1.15.1" - } + "1.15.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, - "categorySectionPackageType": 6, - "restrictProjectFileAccess": 1, - "projectStatus": 4, - "renderCacheId": 1737998, - "projectId": 255902, - "packageFingerprintId": 395391473, - "gameVersionDateReleased": "2019-12-17T00:00:00Z", - "gameVersionMappingId": 2055541, - "gameVersionId": 7675, - "gameId": 432, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2020-01-22T00:00:00Z", + "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "WitherSkeletonTweaks-1.15.1-4.0.0.jar" + "FileNameOnDisk": "WitherSkeletonTweaks-1.15.2-4.0.2.jar" }, "dateInstalled": "2020-03-28T09:44:06.1422535Z", - "dateUpdated": "2019-03-28T09:44:06.1422535Z", - "dateLastUpdateAttempted": "0001-01-01T00:00:00", - "status": 5, + "dateUpdated": "2020-09-13T18:29:29.1142131Z", + "dateLastUpdateAttempted": "2020-09-13T18:29:29.1142131Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -12703,69 +12669,6 @@ "manifestName": null, "installedTargets": null }, - { - "addonID": 353942, - "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", - "installedFile": { - "id": 2960592, - "displayName": "snowundertrees-1.15.2-v1.1.1.jar", - "fileName": "snowundertrees-1.15.2-v1.1.1.jar", - "fileDate": "2020-05-19T10:45:20.397Z", - "fileLength": 15202, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2960/592/snowundertrees-1.15.2-v1.1.1.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 3742181077, - "type": 0 - }, - { - "foldername": "bl4ckscor3", - "fingerprint": 3299607572, - "type": 0 - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 524945892, - "type": 0 - } - ], - "packageFingerprint": 2966436560, - "gameVersion": [ - "Forge", - "1.15.2" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "snowundertrees-1.15.2-v1.1.1.jar" - }, - "dateInstalled": "2020-05-14T20:50:21.2017778Z", - "dateUpdated": "2020-05-19T18:17:46.8577672Z", - "dateLastUpdateAttempted": "2020-05-19T18:17:46.8577672Z", - "status": 5, - "preferenceAutoInstallUpdates": false, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, { "addonID": 238086, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", @@ -17170,7 +17073,7 @@ "dateInstalled": "2020-03-28T09:44:06.1482311Z", "dateUpdated": "2020-09-12T18:09:54.9571787Z", "dateLastUpdateAttempted": "2020-09-12T18:09:54.9571787Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -18313,16 +18216,16 @@ "addonID": 245506, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3054683, - "displayName": "minecolonies-0.13.247-ALPHA-universal.jar", - "fileName": "minecolonies-0.13.247-ALPHA-universal.jar", - "fileDate": "2020-09-11T17:09:59.753Z", - "fileLength": 32672215, + "id": 3056249, + "displayName": "minecolonies-0.13.251-ALPHA-universal.jar", + "fileName": "minecolonies-0.13.251-ALPHA-universal.jar", + "fileDate": "2020-09-13T15:35:15.523Z", + "fileLength": 32673373, "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3054/683/minecolonies-0.13.247-ALPHA-universal.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3056/249/minecolonies-0.13.251-ALPHA-universal.jar", "isAlternate": false, - "alternateFileId": 3054684, + "alternateFileId": 3056250, "dependencies": [ { "id": 0, @@ -18335,31 +18238,31 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2631341534, + "fingerprint": 85637723, "type": 0 }, { "foldername": "com", - "fingerprint": 521084888, - "type": 0 - }, - { - "foldername": "assets", - "fingerprint": 1257828864, + "fingerprint": 3936111102, "type": 0 }, { "foldername": "data", - "fingerprint": 946358173, + "fingerprint": 3255767755, "type": 0 }, { "foldername": "pack.mcmeta", "fingerprint": 1355987511, "type": 0 + }, + { + "foldername": "assets", + "fingerprint": 12787681, + "type": 0 } ], - "packageFingerprint": 1318146102, + "packageFingerprint": 1768248342, "gameVersion": [ "1.15.2" ], @@ -18372,12 +18275,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "minecolonies-0.13.247-ALPHA-universal.jar" + "FileNameOnDisk": "minecolonies-0.13.251-ALPHA-universal.jar" }, "dateInstalled": "2020-07-28T15:30:44.1670577Z", - "dateUpdated": "2020-09-11T17:33:46.5849466Z", - "dateLastUpdateAttempted": "2020-09-11T17:33:46.5849466Z", - "status": 5, + "dateUpdated": "2020-09-13T18:14:18.5322822Z", + "dateLastUpdateAttempted": "2020-09-13T18:14:18.5322822Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, From ebee743154b7e4cfa0f0fd58afae24a564c0ed1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 13 Sep 2020 22:06:15 +0200 Subject: [PATCH 05/39] auto config update --- config/moreoverlays.toml | 46 ++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/config/moreoverlays.toml b/config/moreoverlays.toml index 0ee851a..6989762 100644 --- a/config/moreoverlays.toml +++ b/config/moreoverlays.toml @@ -1,58 +1,58 @@ #Settings for the light / mobspawn overlay [lightoverlay] - #Range of the lightoverlay (positive Y) + #Minimum save light level where no mobs can spawn #Range: > 0 - uprange = 4 + saveLevel = 8 + #Ignore if mobs can actually spawn according to other mods and biome spawn lists and just go by light value + ignoreSpawnList = false #Range of the lightoverlay (negative Y) #Range: > 0 downrange = 16 + #Blocks can allow/disallow spawns for different entity types. The check for this isn't very performat. + #Setting this to true will increase performance but decrease accuracy. + simpleCheck = false #Range of the lightoverlay (Horizontal N,E,S,W) #Range: > 0 hrange = 16 + #Range of the lightoverlay (positive Y) + #Range: > 0 + uprange = 4 #Ignore if there in no 2 Block space to spawn. (Less lag if true) ignoreLayer = false - #Ignore if mobs can actually spawn according to other mods and biome spawn lists and just go by light value - ignoreSpawnList = false - #Blocks can allow/disallow spawns for different entity types. The check for this isn't very performat. - #Setting this to true will increase performance but decrease accuracy. - simpleCheck = false - #Minimum save light level where no mobs can spawn - #Range: > 0 - saveLevel = 8 #Settings for the chunk bounds overlay [chunkbounds] + #Show the middle of the current Chunk (yellow line) + middle = true #Radius (in Chunks) to show the edges (red line) #Range: > 0 radius = 1 - #Show the middle of the current Chunk (yellow line) - middle = true #General render settings. #Line thickness, Colors, ... [rendersettings] - #Color for the chunk edge + #Color the X that marks "Spawns always possible" #Range: 0 ~ 16777215 - chunk_edge_color = 16711680 + spawn_always_color = 16711680 #Color for the chunk grid #Range: 0 ~ 16777215 chunk_grid_color = 65280 - #Color for the middle chunk line - #Range: 0 ~ 16777215 - chunk_mid_color = 16776960 - #Line width for chunk boundaries + #Line width for spawn indication #Range: 0.0 ~ 1.7976931348623157E308 - chunk_line_width = 1.5 - #Color the X that marks "Spawns always possible" + spawn_line_width = 2.0 + #Color for the chunk edge #Range: 0 ~ 16777215 - spawn_always_color = 16711680 + chunk_edge_color = 16711680 #Color the X that marks "Spawns at night possible" #Range: 0 ~ 16777215 spawn_night_color = 16776960 - #Line width for spawn indication + #Color for the middle chunk line + #Range: 0 ~ 16777215 + chunk_mid_color = 16776960 + #Line width for chunk boundaries #Range: 0.0 ~ 1.7976931348623157E308 - spawn_line_width = 2.0 + chunk_line_width = 1.5 #Settings for the search overlay [searchoverlay] From 2ce00972699d56653e155cd25a1866a9adf3eb44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 13 Sep 2020 22:06:17 +0200 Subject: [PATCH 06/39] Update wg_stone.json --- .../datapacks/stratatest/data/forge/tags/blocks/wg_stone.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/config/terraforged/datapacks/stratatest/data/forge/tags/blocks/wg_stone.json b/config/terraforged/datapacks/stratatest/data/forge/tags/blocks/wg_stone.json index fca1346..68e6c16 100644 --- a/config/terraforged/datapacks/stratatest/data/forge/tags/blocks/wg_stone.json +++ b/config/terraforged/datapacks/stratatest/data/forge/tags/blocks/wg_stone.json @@ -3,10 +3,9 @@ "values": [ "minecraft:stone", "minecraft:andesite", - "create:limestone", "quark:slate", "quark:jasper", - "minecraft:granite", + "create:limestone", "create:gabbro", "create:weathered_limestone", "create:natural_scoria" From b169c0496933a73c938951f688b195290cbdf961 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 13 Sep 2020 22:06:22 +0200 Subject: [PATCH 07/39] Update CHANGELOG.md --- changelogs/CHANGELOG.md | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/changelogs/CHANGELOG.md b/changelogs/CHANGELOG.md index 899475f..0c49e24 100644 --- a/changelogs/CHANGELOG.md +++ b/changelogs/CHANGELOG.md @@ -1,3 +1,19 @@ +## Enigmatica 5 - 0.6.1 + +_Using Forge-1.15.2-31.2.36_ | _[Mod Updates](https://github.com/NillerMedDild/Enigmatica5/blob/master/changelogs/CHANGELOG_MODS_0.6.1.txt)_ + +**Changes** + +- + +**Bug Fixes** + +- Fixes Granite being in worldgen, it was not meant to be. + +**Mod Removals** + +- Snow Under Trees (It is not needed with TerraForged) + ## Enigmatica 5 - 0.6.0 _Using Forge-1.15.2-31.2.36_ | _[Mod Updates](https://github.com/NillerMedDild/Enigmatica5/blob/master/changelogs/CHANGELOG_MODS_0.6.0.txt)_ @@ -94,10 +110,6 @@ _Using Forge-1.15.2-31.2.36_ | _[Mod Updates](https://github.com/NillerMedDild/E - Simply Backpacks (Replaced by Useful Backpacks) - StepUp (Other options) -**Known Issues** - -- Thermal Machines produce Thermal ingots, dusts etc, we're working on unifying them. - ## Enigmatica 5 - 0.5.5 _Using Forge-1.15.2-31.2.30_ | _[Mod Updates](https://github.com/NillerMedDild/Enigmatica5/blob/master/changelogs/CHANGELOG_MODS_0.5.5.txt)_ From 5c610bdd6f965d58e17762e9ad2c5cbf045742ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 13 Sep 2020 23:51:38 +0200 Subject: [PATCH 08/39] added compressed cobblestone! --- kubejs/assets/kubejs/lang/en_us.json | 19 +++--------------- .../block/compressed_cobblestone_1x.png | Bin 0 -> 2256 bytes .../kubejs/base/recipes/shapeless.js | 14 ++++++++++++- kubejs/startup/factory/blocks.js | 14 ------------- 4 files changed, 16 insertions(+), 31 deletions(-) create mode 100644 kubejs/assets/kubejs/textures/block/compressed_cobblestone_1x.png diff --git a/kubejs/assets/kubejs/lang/en_us.json b/kubejs/assets/kubejs/lang/en_us.json index e87b255..c0c86fb 100644 --- a/kubejs/assets/kubejs/lang/en_us.json +++ b/kubejs/assets/kubejs/lang/en_us.json @@ -1,16 +1,3 @@ -{ - "block.kubejs.bauxite_ore_deposit": "Bauxite Ore Deposit", - "block.kubejs.copper_ore_deposit": "Copper Ore Deposit", - "block.kubejs.tin_ore_deposit": "Tin Ore Deposit", - "block.kubejs.diamond_ore_deposit": "Diamond Ore Deposit", - "block.kubejs.redstone_ore_deposit": "Redstone Ore Deposit", - "block.kubejs.lead_ore_deposit": "Lead Ore Deposit", - "block.kubejs.iron_ore_deposit": "Iron Ore Deposit", - "block.kubejs.silver_ore_deposit": "Silver Ore Deposit", - "block.kubejs.gold_ore_deposit": "Gold Ore Deposit", - "block.kubejs.coal_ore_deposit": "Coal Ore Deposit", - "block.kubejs.emerald_ore_deposit": "Emerald Ore Deposit", - "block.kubejs.lapis_ore_deposit": "Lapis Lazuli Ore Deposit", - "block.kubejs.aluminum_ore_deposit": "Aluminum Ore Deposit", - "block.kubejs.uranium_ore_deposit": "Uranium Ore Deposit" -} +{ + "block.kubejs.compressed_cobblestone_1x": "Compressed Cobblestone" +} diff --git a/kubejs/assets/kubejs/textures/block/compressed_cobblestone_1x.png b/kubejs/assets/kubejs/textures/block/compressed_cobblestone_1x.png new file mode 100644 index 0000000000000000000000000000000000000000..53811c6405fd0ebfab753c214fe142510f584b35 GIT binary patch literal 2256 zcmbVO32@X@7!C+pP{vXOih{;~TA2@ECU{$;*4+`~L4g z-k)8NF?Ljs?k{#n5Tu7KE!hE|k@^+U8QwoC_FCYhTOe(UiXhMS(yvZP>6&N+>H0u) zPSz&d$FRKYH*kXN0)||F0HP6O_=wy9$Ik#7>H;27vSRmZ_h6_fSg}cQcG4b50$wpK zPXQD1#ya`D89XCkBi=-Z=dzH%4>S(V_4_21&9!2!yeu5+(*%aLLbMrHEI~JjPPS*D zNwNY^i-E*>lBCdh#$dFV%@#5irAUe-$T-4C;YJHfnptB!8v0?-nj*MaM{;V&7JRc} zUQG+I1d)@IW5_WXWW_@m8HOQ9il8VQB5*Y*X?l7Y%AVn7pR3Dp@nmz=Fx zF{rf71%Dt+E2*I{!GICDT!1hdNZqAYpumT5fo#RsYFyw6-~)ajX)44T!`OgV)@0Qy z{|$9``A-I5Xzli}jVEgH`@<$wEoByTBNUJ)qE%-w00;+Ab{Yhkha7*%V@v`g@OsqD zv>ONUW&!8SaWwAc1m0yLDJBj;*{%6!$0;H_kesh0tFB6bjBb*Inm89O#M3-ZyUp-M zQSmrUGnP1BVB*art(ScpQ<|v490x-OX#$uT8u>)DwRl*L*AImi;9<ugN@c;Mv^b{87DH#x!@0uWdY1y7&Fk zn6;%eIJAoUc9Z4Kx+5=Nu79-porc*L>gp0!fJ;(eeQCwuwG*Ox z&DcMEj=xV-X+dwu=6 zMiKe^E&SW6zRLJh=`91MohvVySXS4yuqn^Fgg=-4Zc9R1H)QT>(eq6O8QBKO({-tq;rmVPh@uG7`Z)D`=Ony<% z#4866rYs#aY5%(FyO&yaY%CeF{Az@H{P{ftQt2P6cA4$@Vq}*IWxl;*H}VrJi;9X~ zIbT?PcYJ!!#PssgisF?q%cTpm$R7IwsaL<5+5gM&mq$kQyRkiTc+1gF2uBY+`8dD1 z!e5j+u-tK2+;udwkJ71UqHXELh6d?E)%_6>bssjCT`QY+a(irlE@~OQWVz#{`B-J; z&^G5GLkVS9s<)>one|q%Ou(#J95jyA8)-lipl*ZD9Isuemc4I6iLo$7iO0(bUuw zF)H%aGg5Wo{&kHtTgMODaOe47N={|HxaL-|S0?9!#Ia~wq|2Y}-!b)d+j>XSs`r|o>igWve#^RU Rnx_Bfu%(Pm-jbL#?{@$ZI6eRX literal 0 HcmV?d00001 diff --git a/kubejs/data/enigmatica/kubejs/base/recipes/shapeless.js b/kubejs/data/enigmatica/kubejs/base/recipes/shapeless.js index d2b3f36..fe49103 100644 --- a/kubejs/data/enigmatica/kubejs/base/recipes/shapeless.js +++ b/kubejs/data/enigmatica/kubejs/base/recipes/shapeless.js @@ -109,7 +109,19 @@ events.listen('recipes', function (event) { shapelessRecipe(item.of('patchouli:guide_book', { 'patchouli:book': 'patchouli:modded_for_dummies' }), [ 'minecraft:book', '#forge:dyes/yellow' - ]) + ]), + shapelessRecipe('kubejs:compressed_cobblestone_1x', [ + '#forge:cobblestone', + '#forge:cobblestone', + '#forge:cobblestone', + '#forge:cobblestone', + '#forge:cobblestone', + '#forge:cobblestone', + '#forge:cobblestone', + '#forge:cobblestone', + '#forge:cobblestone' + ]), + shapelessRecipe(item.of('minecraft:cobblestone', 9), ['kubejs:compressed_cobblestone_1x']) ]; recipes.forEach(function (recipe) { diff --git a/kubejs/startup/factory/blocks.js b/kubejs/startup/factory/blocks.js index cb43cbb..d16020b 100644 --- a/kubejs/startup/factory/blocks.js +++ b/kubejs/startup/factory/blocks.js @@ -1,18 +1,4 @@ events.listen('block.registry', function (event) { - // materials.forEach(function (material) { - // material.blockParts.forEach(function (block) { - // var registryName = material.name + '_' + block.name; - - // event - // .create(registryName) - // .texture('kubejs:block/' + registryName) - // .material(block.material) - // .harvestTool(block.harvestTool, block.harvestLevel) - // .hardness(block.hardness) - // .resistance(block.resistance); - // }); - // }); - event .create('compressed_cobblestone_1x') .texture('kubejs:block/compressed_cobblestone_1x') From d0ffcc139cfe385c709da65978ee90b51c960f5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 13 Sep 2020 23:51:49 +0200 Subject: [PATCH 09/39] cleanup in kubejs startup --- kubejs/startup/factory/items.js | 25 +------------------------ kubejs/startup/functions.js | 20 -------------------- kubejs/startup/materialsystem.js | 26 -------------------------- 3 files changed, 1 insertion(+), 70 deletions(-) diff --git a/kubejs/startup/factory/items.js b/kubejs/startup/factory/items.js index 36ec921..5ea7608 100644 --- a/kubejs/startup/factory/items.js +++ b/kubejs/startup/factory/items.js @@ -1,24 +1 @@ -events.listen('item.registry', function (event) { - materials.forEach(function (material) { - material.itemParts.forEach(function (item) { - var registryName = material.name + '_' + item; - - event - .create(registryName) - .group('KubeJS') - .texture('kubejs:item/' + registryName) - .add(); - }); - }); - - // oreVariants.forEach(function (oreVariant) { - // oreVariant.itemParts.forEach(function (item) { - // var registryName = oreVariant.name + '_' + item; - // event - // .create(registryName) - // .group('KubeJS') - // .texture('kubejs:item/' + registryName) - // .add(); - // }); - // }); -}); +events.listen('item.registry', function (event) {}); diff --git a/kubejs/startup/functions.js b/kubejs/startup/functions.js index c310681..e69de29 100644 --- a/kubejs/startup/functions.js +++ b/kubejs/startup/functions.js @@ -1,20 +0,0 @@ -//priority: 1000 - -function material(n, c, i, b) { - return { name: n, color: c, itemParts: i, blockParts: b }; -} - -function blockWithProperties(n, m, h, hl, ha, r) { - return { name: n, material: m, harvestTool: h, harvestLevel: hl, hardness: ha, resistance: r }; -} - -function simpleOre(harvestLevel) { - return { - name: 'ore', - material: block.material.rock, - harvestTool: TOOL_TYPE_PICKAXE, - harvestLevel: harvestLevel, - hardness: 3.0, - resistance: 15.0 - }; -} diff --git a/kubejs/startup/materialsystem.js b/kubejs/startup/materialsystem.js index d804a27..e69de29 100644 --- a/kubejs/startup/materialsystem.js +++ b/kubejs/startup/materialsystem.js @@ -1,26 +0,0 @@ -//priority: 999 - -var oreBlock = blockWithProperties('ore', block.material.rock, TOOL_TYPE_PICKAXE, 1, 3.0, 20.0); -var oreDepositBlock = blockWithProperties('ore_deposit', block.material.earth, TOOL_TYPE_SHOVEL, 1, 3.0, 15.0); - -var materials = [ - material('aluminum', 0xb2bcc4, [], [oreDepositBlock]), - material('bronze', 0xcd7f32, [], []), - material('coal', 0x232326, [], [oreDepositBlock]), - material('copper', 0x89510d, [], [oreDepositBlock]), - material('diamond', 0x8cf4e2, [], [oreDepositBlock]), - material('electrum', 0xd3c34a, [], []), - material('emerald', 0x21ce43, [], [oreDepositBlock]), - material('gold', 0xffff0b, [], [oreDepositBlock]), - material('iron', 0xd8d8d8, [], [oreDepositBlock]), - material('lapis', 0x1b09a3, [], [oreDepositBlock]), - material('lead', 0x38375b, [], [oreDepositBlock]), - material('redstone', 0xa30808, [], [oreDepositBlock]), - material('silver', 0xc8c7e0, [], [oreDepositBlock]), - material('uranium', 0x314736, [], [oreDepositBlock]), - material('tin', 0x9cc9d6, [], [oreDepositBlock]) -]; - -global.oreStoneVariants = oreStoneVariants; -global.oreVariants = oreVariants; -global.materials = materials; From e857326a36d53b03ba901cfd8f7982c15310a126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sun, 13 Sep 2020 23:51:53 +0200 Subject: [PATCH 10/39] Update minecraftinstance.json --- minecraftinstance.json | 1511 +++++++++++++++++++++++++--------------- 1 file changed, 938 insertions(+), 573 deletions(-) diff --git a/minecraftinstance.json b/minecraftinstance.json index e84ab5a..eebf444 100644 --- a/minecraftinstance.json +++ b/minecraftinstance.json @@ -30,7 +30,7 @@ "isUnlocked": true, "javaArgsOverride": null, "javaDirOverride": null, - "lastPlayed": "2020-09-13T18:29:45.4681291Z", + "lastPlayed": "2020-09-13T21:51:31.9395939Z", "manifest": null, "fileDate": "0001-01-01T00:00:00", "installedModpack": null, @@ -525,21 +525,6 @@ "fileCount": 1, "fileSize": 43007 }, - { - "folderName": "minecolonies-0.13.247-ALPHA-universal.jar", - "fingerprint": 1318146102, - "fileDateHash": 3998146242, - "sectionID": 8, - "individualFingerprints": [ - 1318146102 - ], - "status": 1, - "timestamp": "2020-09-11T19:00:25.8248174Z", - "lastWriteTimeUtc": "2020-09-11T17:33:46.5560242Z", - "queryTimestamp": "2020-09-12T21:48:29.6198311Z", - "fileCount": 1, - "fileSize": 32672215 - }, { "folderName": "serverconfigupdater-1.1.jar", "fingerprint": 4234462675, @@ -1272,6 +1257,21 @@ "fileCount": 1, "fileSize": 52700 }, + { + "folderName": "minecolonies-0.13.251-ALPHA-universal.jar", + "fingerprint": 1768248342, + "fileDateHash": 2064012849, + "sectionID": 8, + "individualFingerprints": [ + 1768248342 + ], + "status": 1, + "timestamp": "2020-09-13T20:07:00.5390998Z", + "lastWriteTimeUtc": "2020-09-13T18:14:18.5106135Z", + "queryTimestamp": "2020-09-13T20:07:03.2556072Z", + "fileCount": 1, + "fileSize": 32673373 + }, { "folderName": "mcw-bridges-1.0.4fix-mc1.15.2.jar", "fingerprint": 1812007431, @@ -1963,6 +1963,208 @@ "fileCount": 5, "fileSize": 0 }, + { + "folderName": "New World (7)", + "fingerprint": 4021910067, + "fileDateHash": 1107359610, + "sectionID": 10, + "individualFingerprints": [ + 29425876, + 37223040, + 53316332, + 74311726, + 111640440, + 126148247, + 142007128, + 220349740, + 329063891, + 335183932, + 339853837, + 341673820, + 355228473, + 362580002, + 394507179, + 468595940, + 481121806, + 487195717, + 491171262, + 504434598, + 513901282, + 534981943, + 651942457, + 669251714, + 670102193, + 686299532, + 703937574, + 707517314, + 755985951, + 763558043, + 769737479, + 771550371, + 771755212, + 795307596, + 797016327, + 805596350, + 805664012, + 813236312, + 827373859, + 832660347, + 838526540, + 848704481, + 933407659, + 951040492, + 967776894, + 985462111, + 1086721577, + 1121602085, + 1156691497, + 1182732594, + 1240038654, + 1254586642, + 1318921553, + 1320031062, + 1320537910, + 1326081694, + 1349007058, + 1352380737, + 1367033121, + 1379904776, + 1386704976, + 1402897034, + 1470808285, + 1489426999, + 1536635040, + 1539061548, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1549668901, + 1571306931, + 1592320454, + 1620541268, + 1627858539, + 1636142237, + 1663600643, + 1681925683, + 1722379664, + 1722796223, + 1753484768, + 1777645178, + 1783675463, + 1799081239, + 1818468934, + 1830568727, + 1831771499, + 1907340350, + 1926237630, + 1932224260, + 1989808511, + 1996313512, + 2003699970, + 2007477546, + 2025984034, + 2027585755, + 2102737153, + 2125103759, + 2133734328, + 2143571593, + 2144146657, + 2164073840, + 2168141551, + 2195488906, + 2226088383, + 2232013417, + 2249635574, + 2254141809, + 2256029242, + 2287161386, + 2304864311, + 2311145205, + 2315885618, + 2331170389, + 2340210289, + 2363716728, + 2372576555, + 2376233653, + 2381537358, + 2438022517, + 2502419821, + 2506167617, + 2507541955, + 2509696179, + 2525330077, + 2573305100, + 2575327331, + 2653844868, + 2664468614, + 2677386041, + 2702430682, + 2719595336, + 2742343036, + 2833692463, + 2837445219, + 2868986478, + 2887489200, + 2916640397, + 2949915140, + 3009251900, + 3025660433, + 3049160315, + 3058950171, + 3066937515, + 3145946506, + 3205189787, + 3223266851, + 3245569963, + 3287613341, + 3313731426, + 3362769045, + 3418356820, + 3421536975, + 3422139366, + 3451579659, + 3455076224, + 3463341680, + 3475289000, + 3506688999, + 3533626746, + 3533626746, + 3533626746, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3779001161, + 3781391836, + 3820157475, + 3874577451, + 3894804303, + 3961037842, + 4063734114, + 4095122453, + 4095122453, + 4161228871, + 4164027108, + 4179873556, + 4192398683, + 4242074383, + 4245771050, + 4282956055, + 4285641435 + ], + "status": 1, + "timestamp": "2020-09-13T20:07:01.6022571Z", + "lastWriteTimeUtc": "2020-09-13T20:06:59.9602264Z", + "queryTimestamp": "2020-09-13T20:07:03.2695701Z", + "fileCount": 21, + "fileSize": 0 + }, { "folderName": "Cucumber-1.15.2-3.0.9.jar", "fingerprint": 755016859, @@ -2611,21 +2813,6 @@ "fileCount": 1, "fileSize": 93664 }, - { - "folderName": "WitherSkeletonTweaks-1.15.1-4.0.0.jar", - "fingerprint": 502794257, - "fileDateHash": 1943578776, - "sectionID": 8, - "individualFingerprints": [ - 502794257 - ], - "status": 1, - "timestamp": "2020-03-28T09:44:04.6357333Z", - "lastWriteTimeUtc": "2020-03-16T19:42:25.470162Z", - "queryTimestamp": "2020-09-12T21:48:29.6692086Z", - "fileCount": 1, - "fileSize": 23313 - }, { "folderName": "pneumaticcraft-repressurized-1.15.2-1.4.5-69.jar", "fingerprint": 3439530483, @@ -2866,6 +3053,21 @@ "fileCount": 1, "fileSize": 4891 }, + { + "folderName": "WitherSkeletonTweaks-1.15.2-4.0.2.jar", + "fingerprint": 2990812018, + "fileDateHash": 2393570733, + "sectionID": 8, + "individualFingerprints": [ + 2990812018 + ], + "status": 1, + "timestamp": "2020-09-13T20:07:00.721612Z", + "lastWriteTimeUtc": "2020-09-13T18:29:29.0456379Z", + "queryTimestamp": "2020-09-13T20:07:03.2905144Z", + "fileCount": 1, + "fileSize": 23836 + }, { "folderName": "Cyclic-1.15.2-0.7.0.jar", "fingerprint": 2028119137, @@ -3632,6 +3834,21 @@ "fileCount": 1, "fileSize": 65098 }, + { + "folderName": "The-Endergetic-Expansion-1.15.2-v1.3.2.jar", + "fingerprint": 1626731453, + "fileDateHash": 692036689, + "sectionID": 8, + "individualFingerprints": [ + 1626731453 + ], + "status": 1, + "timestamp": "2020-08-19T20:18:55.7278549Z", + "lastWriteTimeUtc": "2020-08-17T18:51:19.7524257Z", + "queryTimestamp": "2020-09-12T21:48:29.6941412Z", + "fileCount": 1, + "fileSize": 7083211 + }, { "folderName": "rftoolspower-1.15-2.2.4.jar", "fingerprint": 2833144682, @@ -3648,19 +3865,19 @@ "fileSize": 559054 }, { - "folderName": "The-Endergetic-Expansion-1.15.2-v1.3.2.jar", - "fingerprint": 1626731453, - "fileDateHash": 692036689, + "folderName": "FastFurnace-1.15.1-3.0.0.jar", + "fingerprint": 1662686374, + "fileDateHash": 1052884365, "sectionID": 8, "individualFingerprints": [ - 1626731453 + 1662686374 ], "status": 1, - "timestamp": "2020-08-19T20:18:55.7278549Z", - "lastWriteTimeUtc": "2020-08-17T18:51:19.7524257Z", - "queryTimestamp": "2020-09-12T21:48:29.6941412Z", + "timestamp": "2020-03-08T18:37:54.9659469Z", + "lastWriteTimeUtc": "2020-03-07T19:18:16.9715655Z", + "queryTimestamp": "2020-09-12T21:48:29.6951391Z", "fileCount": 1, - "fileSize": 7083211 + "fileSize": 15647 }, { "folderName": "BetterCaves-1.15.2-1.0.jar", @@ -3678,30 +3895,178 @@ "fileSize": 470503 }, { - "folderName": "FastFurnace-1.15.1-3.0.0.jar", - "fingerprint": 1662686374, - "fileDateHash": 1052884365, - "sectionID": 8, + "folderName": "New World (6)", + "fingerprint": 2600808326, + "fileDateHash": 1553942276, + "sectionID": 10, "individualFingerprints": [ - 1662686374 + 14232957, + 29425876, + 74311726, + 89523375, + 110810291, + 110810291, + 165275288, + 183814645, + 220349740, + 239953538, + 239953538, + 339853837, + 341673820, + 362580002, + 449482332, + 481121806, + 513010863, + 513901282, + 531750108, + 566792440, + 639845382, + 651942457, + 686097028, + 686097028, + 686097028, + 686097028, + 686097028, + 686097028, + 686097028, + 686097028, + 687140527, + 707517314, + 763558043, + 769737479, + 797016327, + 805596350, + 827373859, + 858254435, + 942223541, + 951040492, + 1086721577, + 1156691497, + 1173376388, + 1182732594, + 1254586642, + 1318921553, + 1320537910, + 1326081694, + 1326975883, + 1342528384, + 1349007058, + 1367033121, + 1375547154, + 1380256023, + 1380256023, + 1402897034, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1681925683, + 1687356373, + 1722796223, + 1738406045, + 1753484768, + 1777645178, + 1783675463, + 1831771499, + 1847440417, + 1916304742, + 1928131461, + 1950167334, + 1994281838, + 1994281838, + 2003699970, + 2027585755, + 2092494085, + 2126022670, + 2133734328, + 2138561261, + 2144146657, + 2170182963, + 2226088383, + 2232013417, + 2254492920, + 2276802706, + 2294509698, + 2317452451, + 2330888317, + 2331170389, + 2363716728, + 2372576555, + 2431330009, + 2438022517, + 2439740841, + 2439740841, + 2502419821, + 2509696179, + 2557485126, + 2564757960, + 2570925960, + 2573305100, + 2599066892, + 2653844868, + 2673696098, + 2702430682, + 2709822846, + 2815715113, + 2868986478, + 2887489200, + 2998816292, + 3047249770, + 3049160315, + 3135390431, + 3145946506, + 3228725962, + 3251429043, + 3287613341, + 3423969673, + 3451579659, + 3501944059, + 3526466744, + 3533626746, + 3533626746, + 3533626746, + 3533626746, + 3533626746, + 3547542374, + 3642980559, + 3743208239, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3779001161, + 3859315484, + 3859968294, + 3874577451, + 3894804303, + 3961037842, + 3963417356, + 3985598184, + 4095122453, + 4125975323, + 4178651025, + 4183134496, + 4191169282, + 4192398683, + 4230788291, + 4230788291 ], "status": 1, - "timestamp": "2020-03-08T18:37:54.9659469Z", - "lastWriteTimeUtc": "2020-03-07T19:18:16.9715655Z", - "queryTimestamp": "2020-09-12T21:48:29.6951391Z", - "fileCount": 1, - "fileSize": 15647 - }, - { - "folderName": "New World (6)", - "fingerprint": 0, - "fileDateHash": 2544560847, - "sectionID": 10, - "individualFingerprints": null, - "status": 4, - "timestamp": "2020-09-12T21:48:41.8842862Z", - "lastWriteTimeUtc": "2020-09-12T21:48:06.2813434Z", - "queryTimestamp": "0001-01-01T00:00:00", + "timestamp": "2020-09-13T20:07:00.8512651Z", + "lastWriteTimeUtc": "2020-09-12T21:58:43.0440078Z", + "queryTimestamp": "2020-09-13T20:07:03.3084662Z", "fileCount": 21, "fileSize": 0 }, @@ -4127,7 +4492,7 @@ } ], "isValid": true, - "lastPreviousMatchUpdate": "2020-09-12T21:48:31.2215854Z", + "lastPreviousMatchUpdate": "2020-09-13T20:07:04.3257527Z", "isEnabled": true, "isPinned": false, "gameVersion": "1.15.2", @@ -17917,17 +18282,17 @@ "installedTargets": null }, { - "addonID": 237701, + "addonID": 232131, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2950766, - "displayName": "ReAuth-3.8.1", - "fileName": "ReAuth-1.14-1.15-3.8.1.jar", - "fileDate": "2020-05-07T17:10:02.14Z", - "fileLength": 35214, - "releaseType": 1, + "id": 2880426, + "displayName": "DefaultOptions_1.15.2-11.0.1.jar", + "fileName": "DefaultOptions_1.15.2-11.0.1.jar", + "fileDate": "2020-02-12T19:13:07.807Z", + "fileLength": 14518, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2950/766/ReAuth-1.14-1.15-3.8.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2880/426/DefaultOptions_1.15.2-11.0.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -17935,32 +18300,23 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 945673420, + "fingerprint": 1631546758, "type": 0 }, { - "foldername": "technicianlp", - "fingerprint": 276999311, + "foldername": "net", + "fingerprint": 1884610213, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 1864659022, - "type": 0 - }, - { - "foldername": "assets", - "fingerprint": 2706950255, + "fingerprint": 3230626572, "type": 0 } ], - "packageFingerprint": 3893751770, + "packageFingerprint": 2769955196, "gameVersion": [ - "1.14.4", - "1.15", - "Forge", - "1.15.2", - "1.15.1" + "1.15.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -17968,14 +18324,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2020-01-22T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ReAuth-1.14-1.15-3.8.1.jar" + "FileNameOnDisk": "DefaultOptions_1.15.2-11.0.1.jar" }, - "dateInstalled": "2020-01-31T19:34:23.153912Z", - "dateUpdated": "2020-05-12T20:34:38.7259969Z", - "dateLastUpdateAttempted": "2020-05-12T20:34:38.7259969Z", + "dateInstalled": "2020-02-02T19:05:36.1404592Z", + "dateUpdated": "2020-02-13T19:40:45.2989238Z", + "dateLastUpdateAttempted": "2020-02-13T19:40:45.2989238Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -17988,17 +18344,17 @@ "installedTargets": null }, { - "addonID": 232131, + "addonID": 237701, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2880426, - "displayName": "DefaultOptions_1.15.2-11.0.1.jar", - "fileName": "DefaultOptions_1.15.2-11.0.1.jar", - "fileDate": "2020-02-12T19:13:07.807Z", - "fileLength": 14518, - "releaseType": 2, + "id": 2950766, + "displayName": "ReAuth-3.8.1", + "fileName": "ReAuth-1.14-1.15-3.8.1.jar", + "fileDate": "2020-05-07T17:10:02.14Z", + "fileLength": 35214, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2880/426/DefaultOptions_1.15.2-11.0.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2950/766/ReAuth-1.14-1.15-3.8.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -18006,23 +18362,32 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1631546758, + "fingerprint": 945673420, "type": 0 }, { - "foldername": "net", - "fingerprint": 1884610213, + "foldername": "technicianlp", + "fingerprint": 276999311, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 3230626572, + "fingerprint": 1864659022, + "type": 0 + }, + { + "foldername": "assets", + "fingerprint": 2706950255, "type": 0 } ], - "packageFingerprint": 2769955196, + "packageFingerprint": 3893751770, "gameVersion": [ - "1.15.2" + "1.14.4", + "1.15", + "Forge", + "1.15.2", + "1.15.1" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -18030,14 +18395,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2020-01-22T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "DefaultOptions_1.15.2-11.0.1.jar" + "FileNameOnDisk": "ReAuth-1.14-1.15-3.8.1.jar" }, - "dateInstalled": "2020-02-02T19:05:36.1404592Z", - "dateUpdated": "2020-02-13T19:40:45.2989238Z", - "dateLastUpdateAttempted": "2020-02-13T19:40:45.2989238Z", + "dateInstalled": "2020-01-31T19:34:23.153912Z", + "dateUpdated": "2020-05-12T20:34:38.7259969Z", + "dateLastUpdateAttempted": "2020-05-12T20:34:38.7259969Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -18128,23 +18493,23 @@ "installedTargets": null }, { - "addonID": 291737, + "addonID": 245506, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3054246, - "displayName": "thermal_innovation-1.15.2-0.2.2b.jar", - "fileName": "thermal_innovation-1.15.2-0.2.2b.jar", - "fileDate": "2020-09-11T03:35:28.387Z", - "fileLength": 93664, - "releaseType": 2, + "id": 3056249, + "displayName": "minecolonies-0.13.251-ALPHA-universal.jar", + "fileName": "minecolonies-0.13.251-ALPHA-universal.jar", + "fileDate": "2020-09-13T15:35:15.523Z", + "fileLength": 32673373, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3054/246/thermal_innovation-1.15.2-0.2.2b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3056/249/minecolonies-0.13.251-ALPHA-universal.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3056250, "dependencies": [ { "id": 0, - "addonId": 222880, + "addonId": 298744, "type": 3, "fileId": 0 } @@ -18153,38 +18518,32 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 772759795, - "type": 0 - }, - { - "foldername": "cofh", - "fingerprint": 1464404833, + "fingerprint": 85637723, "type": 0 }, { - "foldername": "assets", - "fingerprint": 1622474079, + "foldername": "com", + "fingerprint": 3936111102, "type": 0 }, { "foldername": "data", - "fingerprint": 3353708073, + "fingerprint": 3255767755, "type": 0 }, { - "foldername": "logo.png", - "fingerprint": 721674231, + "foldername": "pack.mcmeta", + "fingerprint": 1355987511, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 4253522632, + "foldername": "assets", + "fingerprint": 12787681, "type": 0 } ], - "packageFingerprint": 623559186, + "packageFingerprint": 1768248342, "gameVersion": [ - "Forge", "1.15.2" ], "hasInstallScript": false, @@ -18196,12 +18555,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal_innovation-1.15.2-0.2.2b.jar" + "FileNameOnDisk": "minecolonies-0.13.251-ALPHA-universal.jar" }, - "dateInstalled": "2020-09-08T11:11:21.4280209Z", - "dateUpdated": "2020-09-11T18:22:16.9879454Z", - "dateLastUpdateAttempted": "2020-09-11T18:22:16.9879454Z", - "status": 5, + "dateInstalled": "2020-07-28T15:30:44.1670577Z", + "dateUpdated": "2020-09-13T18:14:18.5322822Z", + "dateLastUpdateAttempted": "2020-09-13T18:14:18.5322822Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -18213,23 +18572,23 @@ "installedTargets": null }, { - "addonID": 245506, + "addonID": 291737, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3056249, - "displayName": "minecolonies-0.13.251-ALPHA-universal.jar", - "fileName": "minecolonies-0.13.251-ALPHA-universal.jar", - "fileDate": "2020-09-13T15:35:15.523Z", - "fileLength": 32673373, - "releaseType": 3, + "id": 3054246, + "displayName": "thermal_innovation-1.15.2-0.2.2b.jar", + "fileName": "thermal_innovation-1.15.2-0.2.2b.jar", + "fileDate": "2020-09-11T03:35:28.387Z", + "fileLength": 93664, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3056/249/minecolonies-0.13.251-ALPHA-universal.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3054/246/thermal_innovation-1.15.2-0.2.2b.jar", "isAlternate": false, - "alternateFileId": 3056250, + "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 298744, + "addonId": 222880, "type": 3, "fileId": 0 } @@ -18238,32 +18597,38 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 85637723, + "fingerprint": 772759795, "type": 0 }, { - "foldername": "com", - "fingerprint": 3936111102, + "foldername": "cofh", + "fingerprint": 1464404833, + "type": 0 + }, + { + "foldername": "assets", + "fingerprint": 1622474079, "type": 0 }, { "foldername": "data", - "fingerprint": 3255767755, + "fingerprint": 3353708073, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 1355987511, + "foldername": "logo.png", + "fingerprint": 721674231, "type": 0 }, { - "foldername": "assets", - "fingerprint": 12787681, + "foldername": "pack.mcmeta", + "fingerprint": 4253522632, "type": 0 } ], - "packageFingerprint": 1768248342, + "packageFingerprint": 623559186, "gameVersion": [ + "Forge", "1.15.2" ], "hasInstallScript": false, @@ -18275,12 +18640,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "minecolonies-0.13.251-ALPHA-universal.jar" + "FileNameOnDisk": "thermal_innovation-1.15.2-0.2.2b.jar" }, - "dateInstalled": "2020-07-28T15:30:44.1670577Z", - "dateUpdated": "2020-09-13T18:14:18.5322822Z", - "dateLastUpdateAttempted": "2020-09-13T18:14:18.5322822Z", - "status": 4, + "dateInstalled": "2020-09-08T11:11:21.4280209Z", + "dateUpdated": "2020-09-11T18:22:16.9879454Z", + "dateLastUpdateAttempted": "2020-09-11T18:22:16.9879454Z", + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -19071,73 +19436,6 @@ "manifestName": null, "installedTargets": null }, - { - "addonID": 316833, - "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", - "installedFile": { - "id": 3008248, - "displayName": "ObserverLib-1.15.2-1.2.0.jar", - "fileName": "observerlib-1.15.2-1.2.0.v60.jar", - "fileDate": "2020-07-18T14:57:05.08Z", - "fileLength": 136840, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3008/248/observerlib-1.15.2-1.2.0.v60.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 697129792, - "type": 0 - }, - { - "foldername": "hellfirepvp", - "fingerprint": 1405202566, - "type": 0 - }, - { - "foldername": "javascript", - "fingerprint": 2500950056, - "type": 0 - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 2246455818, - "type": 0 - } - ], - "packageFingerprint": 791305141, - "gameVersion": [ - "1.15.2" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "observerlib-1.15.2-1.2.0.v60.jar" - }, - "dateInstalled": "2020-08-01T19:17:16.0211477Z", - "dateUpdated": "2020-08-01T19:17:16.02315Z", - "dateLastUpdateAttempted": "2020-08-01T19:17:16.02315Z", - "status": 5, - "preferenceAutoInstallUpdates": false, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, { "addonID": 242195, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", @@ -19219,18 +19517,85 @@ "installedTargets": null }, { - "addonID": 363065, + "addonID": 316833, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2893163, - "displayName": "stonecatalysts-1.15.2-1.2.0.jar", - "fileName": "stonecatalysts-1.15.2-1.2.0.jar", - "fileDate": "2020-03-02T10:15:44.323Z", - "fileLength": 207348, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2893/163/stonecatalysts-1.15.2-1.2.0.jar", - "isAlternate": false, + "id": 3008248, + "displayName": "ObserverLib-1.15.2-1.2.0.jar", + "fileName": "observerlib-1.15.2-1.2.0.v60.jar", + "fileDate": "2020-07-18T14:57:05.08Z", + "fileLength": 136840, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3008/248/observerlib-1.15.2-1.2.0.v60.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 697129792, + "type": 0 + }, + { + "foldername": "hellfirepvp", + "fingerprint": 1405202566, + "type": 0 + }, + { + "foldername": "javascript", + "fingerprint": 2500950056, + "type": 0 + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 2246455818, + "type": 0 + } + ], + "packageFingerprint": 791305141, + "gameVersion": [ + "1.15.2" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "observerlib-1.15.2-1.2.0.v60.jar" + }, + "dateInstalled": "2020-08-01T19:17:16.0211477Z", + "dateUpdated": "2020-08-01T19:17:16.02315Z", + "dateLastUpdateAttempted": "2020-08-01T19:17:16.02315Z", + "status": 5, + "preferenceAutoInstallUpdates": false, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 363065, + "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", + "installedFile": { + "id": 2893163, + "displayName": "stonecatalysts-1.15.2-1.2.0.jar", + "fileName": "stonecatalysts-1.15.2-1.2.0.jar", + "fileDate": "2020-03-02T10:15:44.323Z", + "fileLength": 207348, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/2893/163/stonecatalysts-1.15.2-1.2.0.jar", + "isAlternate": false, "alternateFileId": 0, "dependencies": [ { @@ -19827,6 +20192,78 @@ "manifestName": null, "installedTargets": null }, + { + "addonID": 351948, + "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", + "installedFile": { + "id": 2912824, + "displayName": "Mining Helmet 1.15.2-v1.0.8", + "fileName": "mining-helmet-1.15.2-1.0.8.jar", + "fileDate": "2020-03-26T00:02:58.673Z", + "fileLength": 34303, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/2912/824/mining-helmet-1.15.2-1.0.8.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 214238143, + "type": 0 + }, + { + "foldername": "com", + "fingerprint": 2991367495, + "type": 0 + }, + { + "foldername": "assets", + "fingerprint": 258773674, + "type": 0 + }, + { + "foldername": "data", + "fingerprint": 3140047221, + "type": 0 + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 4253522632, + "type": 0 + } + ], + "packageFingerprint": 122181231, + "gameVersion": [ + "1.15.2" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2020-01-22T00:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "mining-helmet-1.15.2-1.0.8.jar" + }, + "dateInstalled": "2020-07-05T20:35:10.6034753Z", + "dateUpdated": "2020-07-05T20:35:10.8518107Z", + "dateLastUpdateAttempted": "2020-07-05T20:35:10.8518107Z", + "status": 5, + "preferenceAutoInstallUpdates": false, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, { "addonID": 271740, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", @@ -19902,50 +20339,58 @@ "installedTargets": null }, { - "addonID": 351948, + "addonID": 250577, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2912824, - "displayName": "Mining Helmet 1.15.2-v1.0.8", - "fileName": "mining-helmet-1.15.2-1.0.8.jar", - "fileDate": "2020-03-26T00:02:58.673Z", - "fileLength": 34303, + "id": 2936509, + "displayName": "AkashicTome-1.3-13.jar", + "fileName": "AkashicTome-1.3-13.jar", + "fileDate": "2020-04-21T12:17:52.893Z", + "fileLength": 39737, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2912/824/mining-helmet-1.15.2-1.0.8.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2936/509/AkashicTome-1.3-13.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 250363, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 214238143, + "fingerprint": 4187856036, "type": 0 }, { - "foldername": "com", - "fingerprint": 2991367495, + "foldername": "vazkii", + "fingerprint": 122177015, "type": 0 }, { "foldername": "assets", - "fingerprint": 258773674, + "fingerprint": 19176750, "type": 0 }, { "foldername": "data", - "fingerprint": 3140047221, + "fingerprint": 1646269815, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 4253522632, + "fingerprint": 3481267785, "type": 0 } ], - "packageFingerprint": 122181231, + "packageFingerprint": 4134879910, "gameVersion": [ + "Forge", "1.15.2" ], "hasInstallScript": false, @@ -19954,14 +20399,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2020-01-22T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "mining-helmet-1.15.2-1.0.8.jar" + "FileNameOnDisk": "AkashicTome-1.3-13.jar" }, - "dateInstalled": "2020-07-05T20:35:10.6034753Z", - "dateUpdated": "2020-07-05T20:35:10.8518107Z", - "dateLastUpdateAttempted": "2020-07-05T20:35:10.8518107Z", + "dateInstalled": "2020-04-23T18:01:56.548777Z", + "dateUpdated": "2020-04-23T18:01:56.6805915Z", + "dateLastUpdateAttempted": "2020-04-23T18:01:56.6805915Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -20093,23 +20538,23 @@ "installedTargets": null }, { - "addonID": 250577, + "addonID": 272302, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2936509, - "displayName": "AkashicTome-1.3-13.jar", - "fileName": "AkashicTome-1.3-13.jar", - "fileDate": "2020-04-21T12:17:52.893Z", - "fileLength": 39737, + "id": 3005715, + "displayName": "Refined Storage Addons 0.6.3", + "fileName": "refinedstorageaddons-0.6.3.jar", + "fileDate": "2020-07-15T17:14:20.21Z", + "fileLength": 28802, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2936/509/AkashicTome-1.3-13.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3005/715/refinedstorageaddons-0.6.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 250363, + "addonId": 243076, "type": 3, "fileId": 0 } @@ -20118,31 +20563,31 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4187856036, + "fingerprint": 1492893546, "type": 0 }, { - "foldername": "vazkii", - "fingerprint": 122177015, + "foldername": "com", + "fingerprint": 4231172936, "type": 0 }, { "foldername": "assets", - "fingerprint": 19176750, + "fingerprint": 1327761641, "type": 0 }, { "foldername": "data", - "fingerprint": 1646269815, + "fingerprint": 3871752191, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 3481267785, + "fingerprint": 3161986055, "type": 0 } ], - "packageFingerprint": 4134879910, + "packageFingerprint": 2000841567, "gameVersion": [ "Forge", "1.15.2" @@ -20156,11 +20601,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "AkashicTome-1.3-13.jar" + "FileNameOnDisk": "refinedstorageaddons-0.6.3.jar" }, - "dateInstalled": "2020-04-23T18:01:56.548777Z", - "dateUpdated": "2020-04-23T18:01:56.6805915Z", - "dateLastUpdateAttempted": "2020-04-23T18:01:56.6805915Z", + "dateInstalled": "2020-01-31T20:26:05.1578323Z", + "dateUpdated": "2020-07-15T19:39:05.1425069Z", + "dateLastUpdateAttempted": "2020-07-15T19:39:05.1425069Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -20173,102 +20618,22 @@ "installedTargets": null }, { - "addonID": 272302, + "addonID": 287342, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3005715, - "displayName": "Refined Storage Addons 0.6.3", - "fileName": "refinedstorageaddons-0.6.3.jar", - "fileDate": "2020-07-15T17:14:20.21Z", - "fileLength": 28802, - "releaseType": 1, + "id": 2980252, + "displayName": "titanium-1.15.2-2.4.2.jar", + "fileName": "titanium-1.15.2-2.4.2.jar", + "fileDate": "2020-06-14T19:15:15.267Z", + "fileLength": 546613, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3005/715/refinedstorageaddons-0.6.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2980/252/titanium-1.15.2-2.4.2.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 243076, - "type": 3, - "fileId": 0 - } - ], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 1492893546, - "type": 0 - }, - { - "foldername": "com", - "fingerprint": 4231172936, - "type": 0 - }, - { - "foldername": "assets", - "fingerprint": 1327761641, - "type": 0 - }, - { - "foldername": "data", - "fingerprint": 3871752191, - "type": 0 - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 3161986055, - "type": 0 - } - ], - "packageFingerprint": 2000841567, - "gameVersion": [ - "Forge", - "1.15.2" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "refinedstorageaddons-0.6.3.jar" - }, - "dateInstalled": "2020-01-31T20:26:05.1578323Z", - "dateUpdated": "2020-07-15T19:39:05.1425069Z", - "dateLastUpdateAttempted": "2020-07-15T19:39:05.1425069Z", - "status": 5, - "preferenceAutoInstallUpdates": false, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 287342, - "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", - "installedFile": { - "id": 2980252, - "displayName": "titanium-1.15.2-2.4.2.jar", - "fileName": "titanium-1.15.2-2.4.2.jar", - "fileDate": "2020-06-14T19:15:15.267Z", - "fileLength": 546613, - "releaseType": 2, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2980/252/titanium-1.15.2-2.4.2.jar", - "isAlternate": false, - "alternateFileId": 2980253, - "dependencies": [], - "isAvailable": true, - "modules": [ + "alternateFileId": 2980253, + "dependencies": [], + "isAvailable": true, + "modules": [ { "foldername": "META-INF", "fingerprint": 4052192916, @@ -20678,71 +21043,39 @@ "installedTargets": null }, { - "addonID": 316873, + "addonID": 256717, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2880784, - "displayName": "curioofundying-FORGE-1.15.2-3.0.jar", - "fileName": "curioofundying-FORGE-1.15.2-3.0.jar", - "fileDate": "2020-02-13T07:40:38.56Z", - "fileLength": 26321, + "id": 3041924, + "displayName": "Clumps-5.0.2.6.jar", + "fileName": "Clumps-5.0.2.6.jar", + "fileDate": "2020-08-25T15:20:54.173Z", + "fileLength": 13313, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2880/784/curioofundying-FORGE-1.15.2-3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3041/924/Clumps-5.0.2.6.jar", "isAlternate": false, - "alternateFileId": 2880785, - "dependencies": [ - { - "id": 0, - "addonId": 309927, - "type": 3, - "fileId": 0 - } - ], + "alternateFileId": 3041925, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2194353379, - "type": 0 - }, - { - "foldername": "top", - "fingerprint": 2083467830, - "type": 0 - }, - { - "foldername": "CHANGELOG.md", - "fingerprint": 1426454620, - "type": 0 - }, - { - "foldername": "curioofundying_icon.png", - "fingerprint": 871239941, - "type": 0 - }, - { - "foldername": "data", - "fingerprint": 2806061578, + "fingerprint": 1250379429, "type": 0 }, { - "foldername": "licenses", - "fingerprint": 520874550, + "foldername": "com", + "fingerprint": 1085893994, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 391677537, - "type": 0 - }, - { - "foldername": "README.md", - "fingerprint": 3907935422, + "fingerprint": 4178614280, "type": 0 } ], - "packageFingerprint": 3904465126, + "packageFingerprint": 1584814646, "gameVersion": [ "Forge", "1.15.2" @@ -20756,11 +21089,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "curioofundying-FORGE-1.15.2-3.0.jar" + "FileNameOnDisk": "Clumps-5.0.2.6.jar" }, - "dateInstalled": "2020-02-13T19:33:13.0240236Z", - "dateUpdated": "2020-02-13T19:33:13.1320157Z", - "dateLastUpdateAttempted": "2020-02-13T19:33:13.1320157Z", + "dateInstalled": "2020-07-12T21:56:56.7585127Z", + "dateUpdated": "2020-08-26T18:54:29.1269159Z", + "dateLastUpdateAttempted": "2020-08-26T18:54:29.1269159Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -20857,114 +21190,71 @@ "installedTargets": null }, { - "addonID": 256717, + "addonID": 316873, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3041924, - "displayName": "Clumps-5.0.2.6.jar", - "fileName": "Clumps-5.0.2.6.jar", - "fileDate": "2020-08-25T15:20:54.173Z", - "fileLength": 13313, + "id": 2880784, + "displayName": "curioofundying-FORGE-1.15.2-3.0.jar", + "fileName": "curioofundying-FORGE-1.15.2-3.0.jar", + "fileDate": "2020-02-13T07:40:38.56Z", + "fileLength": 26321, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3041/924/Clumps-5.0.2.6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2880/784/curioofundying-FORGE-1.15.2-3.0.jar", "isAlternate": false, - "alternateFileId": 3041925, - "dependencies": [], + "alternateFileId": 2880785, + "dependencies": [ + { + "id": 0, + "addonId": 309927, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1250379429, + "fingerprint": 2194353379, "type": 0 }, { - "foldername": "com", - "fingerprint": 1085893994, + "foldername": "top", + "fingerprint": 2083467830, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 4178614280, + "foldername": "CHANGELOG.md", + "fingerprint": 1426454620, "type": 0 - } - ], - "packageFingerprint": 1584814646, - "gameVersion": [ - "Forge", - "1.15.2" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "Clumps-5.0.2.6.jar" - }, - "dateInstalled": "2020-07-12T21:56:56.7585127Z", - "dateUpdated": "2020-08-26T18:54:29.1269159Z", - "dateLastUpdateAttempted": "2020-08-26T18:54:29.1269159Z", - "status": 5, - "preferenceAutoInstallUpdates": false, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 314093, - "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", - "installedFile": { - "id": 2969303, - "displayName": "whoops-1.15.2-0.0.1.3.jar", - "fileName": "whoops-1.15.2-0.0.1.3.jar", - "fileDate": "2020-05-31T04:17:29.99Z", - "fileLength": 29544, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2969/303/whoops-1.15.2-0.0.1.3.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 225643, - "type": 3, - "fileId": 0 - } - ], - "isAvailable": true, - "modules": [ + }, { - "foldername": "META-INF", - "fingerprint": 324196010, + "foldername": "curioofundying_icon.png", + "fingerprint": 871239941, "type": 0 }, { - "foldername": "noobanidus", - "fingerprint": 3069214470, + "foldername": "data", + "fingerprint": 2806061578, "type": 0 }, { - "foldername": "assets", - "fingerprint": 3500852102, + "foldername": "licenses", + "fingerprint": 520874550, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 2517860023, + "fingerprint": 391677537, + "type": 0 + }, + { + "foldername": "README.md", + "fingerprint": 3907935422, "type": 0 } ], - "packageFingerprint": 1304413506, + "packageFingerprint": 3904465126, "gameVersion": [ "Forge", "1.15.2" @@ -20975,14 +21265,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "whoops-1.15.2-0.0.1.3.jar" + "FileNameOnDisk": "curioofundying-FORGE-1.15.2-3.0.jar" }, - "dateInstalled": "2020-04-16T18:05:49.2002787Z", - "dateUpdated": "2020-05-31T09:15:31.027786Z", - "dateLastUpdateAttempted": "2020-05-31T09:15:31.027786Z", + "dateInstalled": "2020-02-13T19:33:13.0240236Z", + "dateUpdated": "2020-02-13T19:33:13.1320157Z", + "dateLastUpdateAttempted": "2020-02-13T19:33:13.1320157Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -21096,6 +21386,81 @@ "manifestName": null, "installedTargets": null }, + { + "addonID": 314093, + "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", + "installedFile": { + "id": 2969303, + "displayName": "whoops-1.15.2-0.0.1.3.jar", + "fileName": "whoops-1.15.2-0.0.1.3.jar", + "fileDate": "2020-05-31T04:17:29.99Z", + "fileLength": 29544, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/2969/303/whoops-1.15.2-0.0.1.3.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ + { + "id": 0, + "addonId": 225643, + "type": 3, + "fileId": 0 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 324196010, + "type": 0 + }, + { + "foldername": "noobanidus", + "fingerprint": 3069214470, + "type": 0 + }, + { + "foldername": "assets", + "fingerprint": 3500852102, + "type": 0 + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 2517860023, + "type": 0 + } + ], + "packageFingerprint": 1304413506, + "gameVersion": [ + "Forge", + "1.15.2" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "whoops-1.15.2-0.0.1.3.jar" + }, + "dateInstalled": "2020-04-16T18:05:49.2002787Z", + "dateUpdated": "2020-05-31T09:15:31.027786Z", + "dateLastUpdateAttempted": "2020-05-31T09:15:31.027786Z", + "status": 5, + "preferenceAutoInstallUpdates": false, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, { "addonID": 318551, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", @@ -21610,71 +21975,45 @@ "installedTargets": null }, { - "addonID": 383182, + "addonID": 235577, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2956029, - "displayName": "XNetGases-1.15.2-1.0.0.jar", - "fileName": "XNetGases-1.15.2-1.0.0.jar", - "fileDate": "2020-05-13T18:43:07.127Z", - "fileLength": 139878, - "releaseType": 1, + "id": 2873613, + "displayName": "TrashSlot_1.15.2-11.0.0.jar", + "fileName": "TrashSlot_1.15.2-11.0.0.jar", + "fileDate": "2020-02-02T09:15:42.473Z", + "fileLength": 60755, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2956/29/XNetGases-1.15.2-1.0.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2873/613/TrashSlot_1.15.2-11.0.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 326041, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 268560, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 260912, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 233105, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3186711685, + "fingerprint": 4246659184, "type": 0 }, { - "foldername": "terrails", - "fingerprint": 1582317102, + "foldername": "net", + "fingerprint": 1959376298, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 1646317105, + "foldername": "assets", + "fingerprint": 989420890, "type": 0 }, { - "foldername": "xnetgases.png", - "fingerprint": 224484208, + "foldername": "pack.mcmeta", + "fingerprint": 3514838989, "type": 0 } ], - "packageFingerprint": 3797195481, + "packageFingerprint": 787886344, "gameVersion": [ - "Forge", "1.15.2" ], "hasInstallScript": false, @@ -21683,14 +22022,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2020-01-22T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "XNetGases-1.15.2-1.0.0.jar" + "FileNameOnDisk": "TrashSlot_1.15.2-11.0.0.jar" }, - "dateInstalled": "2020-05-14T17:36:59.8689747Z", - "dateUpdated": "2020-05-14T17:36:59.8689747Z", - "dateLastUpdateAttempted": "2020-05-14T17:36:59.8689747Z", + "dateInstalled": "2020-02-02T19:16:54.7180056Z", + "dateUpdated": "2020-02-02T19:16:54.7200209Z", + "dateLastUpdateAttempted": "2020-02-02T19:16:54.7200209Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -21770,45 +22109,71 @@ "installedTargets": null }, { - "addonID": 235577, + "addonID": 383182, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2873613, - "displayName": "TrashSlot_1.15.2-11.0.0.jar", - "fileName": "TrashSlot_1.15.2-11.0.0.jar", - "fileDate": "2020-02-02T09:15:42.473Z", - "fileLength": 60755, - "releaseType": 2, + "id": 2956029, + "displayName": "XNetGases-1.15.2-1.0.0.jar", + "fileName": "XNetGases-1.15.2-1.0.0.jar", + "fileDate": "2020-05-13T18:43:07.127Z", + "fileLength": 139878, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2873/613/TrashSlot_1.15.2-11.0.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2956/29/XNetGases-1.15.2-1.0.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 326041, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 268560, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 260912, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 233105, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4246659184, + "fingerprint": 3186711685, "type": 0 }, { - "foldername": "net", - "fingerprint": 1959376298, + "foldername": "terrails", + "fingerprint": 1582317102, "type": 0 }, { - "foldername": "assets", - "fingerprint": 989420890, + "foldername": "pack.mcmeta", + "fingerprint": 1646317105, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 3514838989, + "foldername": "xnetgases.png", + "fingerprint": 224484208, "type": 0 } ], - "packageFingerprint": 787886344, + "packageFingerprint": 3797195481, "gameVersion": [ + "Forge", "1.15.2" ], "hasInstallScript": false, @@ -21817,14 +22182,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2020-01-22T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "TrashSlot_1.15.2-11.0.0.jar" + "FileNameOnDisk": "XNetGases-1.15.2-1.0.0.jar" }, - "dateInstalled": "2020-02-02T19:16:54.7180056Z", - "dateUpdated": "2020-02-02T19:16:54.7200209Z", - "dateLastUpdateAttempted": "2020-02-02T19:16:54.7200209Z", + "dateInstalled": "2020-05-14T17:36:59.8689747Z", + "dateUpdated": "2020-05-14T17:36:59.8689747Z", + "dateLastUpdateAttempted": "2020-05-14T17:36:59.8689747Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, From f7960d126c3277920e8353b0b668ee0c47543429 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 14 Sep 2020 00:29:07 +0200 Subject: [PATCH 11/39] Update maessentials.toml --- config/maessentials.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/maessentials.toml b/config/maessentials.toml index 7204cbc..edf5ae3 100644 --- a/config/maessentials.toml +++ b/config/maessentials.toml @@ -121,7 +121,7 @@ [Commands.suicide] enable_player = true #Enable command: /suicide - enable = true + enable = false #Range: > 0 cooldown_player = 20 From c3f04eabbc161ff98c9f55e8a8cfff8f520ab27f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 14 Sep 2020 21:21:21 +0200 Subject: [PATCH 12/39] removed normal/expert mode scripts --- .../kubejs/expert/recipes/shaped.js | 5 ----- .../kubejs/expert/recipes/shapeless.js | 5 ----- .../kubejs/normal/recipes/remove.js | 17 -------------- .../kubejs/normal/recipes/shaped.js | 22 ------------------- .../kubejs/normal/recipes/shapeless.js | 5 ----- 5 files changed, 54 deletions(-) delete mode 100644 kubejs/data/enigmatica/kubejs/expert/recipes/shaped.js delete mode 100644 kubejs/data/enigmatica/kubejs/expert/recipes/shapeless.js diff --git a/kubejs/data/enigmatica/kubejs/expert/recipes/shaped.js b/kubejs/data/enigmatica/kubejs/expert/recipes/shaped.js deleted file mode 100644 index b218c26..0000000 --- a/kubejs/data/enigmatica/kubejs/expert/recipes/shaped.js +++ /dev/null @@ -1,5 +0,0 @@ -events.listen('recipes', function (event) { - if (global.packmode !== 'expert') { - return; - } -}); diff --git a/kubejs/data/enigmatica/kubejs/expert/recipes/shapeless.js b/kubejs/data/enigmatica/kubejs/expert/recipes/shapeless.js deleted file mode 100644 index b218c26..0000000 --- a/kubejs/data/enigmatica/kubejs/expert/recipes/shapeless.js +++ /dev/null @@ -1,5 +0,0 @@ -events.listen('recipes', function (event) { - if (global.packmode !== 'expert') { - return; - } -}); diff --git a/kubejs/data/enigmatica/kubejs/normal/recipes/remove.js b/kubejs/data/enigmatica/kubejs/normal/recipes/remove.js index b9b6095..e69de29 100644 --- a/kubejs/data/enigmatica/kubejs/normal/recipes/remove.js +++ b/kubejs/data/enigmatica/kubejs/normal/recipes/remove.js @@ -1,17 +0,0 @@ -events.listen('recipes', function (event) { - if (global.packmode !== 'normal') { - return; - } - - var outputRemovals = ['torchmaster:feral_flare_lantern', 'torchmaster:megatorch']; - - var idRemovals = []; - - outputRemovals.forEach(function (removal) { - event.remove({ output: removal }); - }); - - idRemovals.forEach(function (removal) { - event.remove({ id: removal }); - }); -}); diff --git a/kubejs/data/enigmatica/kubejs/normal/recipes/shaped.js b/kubejs/data/enigmatica/kubejs/normal/recipes/shaped.js index 5daf88d..e69de29 100644 --- a/kubejs/data/enigmatica/kubejs/normal/recipes/shaped.js +++ b/kubejs/data/enigmatica/kubejs/normal/recipes/shaped.js @@ -1,22 +0,0 @@ -events.listen('recipes', function (event) { - if (global.packmode !== 'normal') { - return; - } - - var recipes = [ - shapedRecipe('torchmaster:megatorch', ['AAA', 'BCB', 'DCD'], { - A: 'torchmaster:feral_flare_lantern', - B: '#enigmatica:crafting_materials/diamond', - C: '#minecraft:logs', - D: '#forge:storage_blocks/gold' - }), - shapedRecipe('torchmaster:feral_flare_lantern', [' A ', 'BCB', ' A '], { - A: '#forge:ingots/gold', - B: '#forge:glass', - C: '#forge:storage_blocks/glowstone' - }) - ]; - recipes.forEach(function (recipe) { - event.shaped(recipe.result, recipe.pattern, recipe.key); - }); -}); diff --git a/kubejs/data/enigmatica/kubejs/normal/recipes/shapeless.js b/kubejs/data/enigmatica/kubejs/normal/recipes/shapeless.js index 47f1b1c..e69de29 100644 --- a/kubejs/data/enigmatica/kubejs/normal/recipes/shapeless.js +++ b/kubejs/data/enigmatica/kubejs/normal/recipes/shapeless.js @@ -1,5 +0,0 @@ -events.listen('recipes', function (event) { - if (global.packmode !== 'normal') { - return; - } -}); From f7b47093004622a2d0906eb0bd09e632c63a2666 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 14 Sep 2020 21:21:36 +0200 Subject: [PATCH 13/39] normal/expert mode script removal step 2 --- kubejs/data/enigmatica/kubejs/base/recipes/remove.js | 5 ++++- kubejs/data/enigmatica/kubejs/base/recipes/shaped.js | 11 +++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/kubejs/data/enigmatica/kubejs/base/recipes/remove.js b/kubejs/data/enigmatica/kubejs/base/recipes/remove.js index 317e27e..d51bc7f 100644 --- a/kubejs/data/enigmatica/kubejs/base/recipes/remove.js +++ b/kubejs/data/enigmatica/kubejs/base/recipes/remove.js @@ -14,7 +14,10 @@ events.listen('recipes', function (event) { 'minecraft:sticky_piston', - 'morevanillalib:obsidian_shard' + 'morevanillalib:obsidian_shard', + + 'torchmaster:feral_flare_lantern', + 'torchmaster:megatorch' ]; var idRemovals = [ diff --git a/kubejs/data/enigmatica/kubejs/base/recipes/shaped.js b/kubejs/data/enigmatica/kubejs/base/recipes/shaped.js index 3c8bf16..41347e2 100644 --- a/kubejs/data/enigmatica/kubejs/base/recipes/shaped.js +++ b/kubejs/data/enigmatica/kubejs/base/recipes/shaped.js @@ -70,6 +70,17 @@ events.listen('recipes', function (event) { shapedRecipe('vanillaexcavators:stone_excavator', ['B', 'A', 'A'], { A: '#forge:rods/wooden', B: 'kubejs:compressed_cobblestone_1x' + }), + shapedRecipe('torchmaster:megatorch', ['AAA', 'BCB', 'DCD'], { + A: 'torchmaster:feral_flare_lantern', + B: '#enigmatica:crafting_materials/diamond', + C: '#minecraft:logs', + D: '#forge:storage_blocks/gold' + }), + shapedRecipe('torchmaster:feral_flare_lantern', [' A ', 'BCB', ' A '], { + A: '#forge:ingots/gold', + B: '#forge:glass', + C: '#forge:storage_blocks/glowstone' }) ]; From c40d266801593decfd6f6e30aa37386fb6da493b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 14 Sep 2020 21:22:25 +0200 Subject: [PATCH 14/39] niter / salpeter /potassium nitrate --- config/emendatusenigmatica-common.toml | 14 ++++++------- config/jaopca/materials/niter.toml | 4 ++++ .../jaopca/materials/potassium_nitrate.toml | 21 +++++++++++++++++++ 3 files changed, 32 insertions(+), 7 deletions(-) create mode 100644 config/jaopca/materials/potassium_nitrate.toml diff --git a/config/emendatusenigmatica-common.toml b/config/emendatusenigmatica-common.toml index 8fd2efb..a470de0 100644 --- a/config/emendatusenigmatica-common.toml +++ b/config/emendatusenigmatica-common.toml @@ -367,19 +367,19 @@ #Range: 0 ~ 64 Count = 3 -["Saltpeter Ore"] +["Potassium Nitrate Ore"] #Activate/Deactivate the World Gen [Default: true] Active = true - #Minimum Y-Level [Default: 0] - #Range: 0 ~ 128 - Minimum = 18 - #Maximum Y-Level [Default: 24] - #Range: 0 ~ 256 - Maximum = 32 #Configure the ore Vein Size [Default: 7] #Range: 0 ~ 64 Size = 6 #Ores count per Chunk [Default: 3] #Range: 0 ~ 64 Count = 3 + #Minimum Y-Level [Default: 0] + #Range: 0 ~ 128 + Minimum = 18 + #Maximum Y-Level [Default: 24] + #Range: 0 ~ 256 + Maximum = 32 diff --git a/config/jaopca/materials/niter.toml b/config/jaopca/materials/niter.toml index 6904260..56dc9b8 100644 --- a/config/jaopca/materials/niter.toml +++ b/config/jaopca/materials/niter.toml @@ -15,3 +15,7 @@ #The byproduct material to output in Create's crushing. byproduct = "minecraft:cobblestone" +[mekanism] + #The base to use in Mekanism's Combiner to recreate ores. + ore_base = "#forge:cobblestone" + diff --git a/config/jaopca/materials/potassium_nitrate.toml b/config/jaopca/materials/potassium_nitrate.toml new file mode 100644 index 0000000..838b3a8 --- /dev/null +++ b/config/jaopca/materials/potassium_nitrate.toml @@ -0,0 +1,21 @@ + +[general] + #The alternative names of this material. + alternativeNames = [] + #The byproducts of this material. + extras = [] + #The module blacklist of this material. + moduleBlacklist = [] + #Should items of this material have the enchanted glow. + hasEffect = false + #The model type of the material. + modelType = "metallic" + +[create] + #The byproduct material to output in Create's crushing. + byproduct = "minecraft:cobblestone" + +[mekanism] + #The base to use in Mekanism's Combiner to recreate ores. + ore_base = "#forge:cobblestone" + From 2da0ea5f04252be547c33c57906fe465e668ea9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 14 Sep 2020 21:22:32 +0200 Subject: [PATCH 15/39] mod updates --- config/dungeon_crawl.toml | 16 +- minecraftinstance.json | 1109 ++++++++++++++++++------------------- 2 files changed, 562 insertions(+), 563 deletions(-) diff --git a/config/dungeon_crawl.toml b/config/dungeon_crawl.toml index 4031d61..b0e09df 100644 --- a/config/dungeon_crawl.toml +++ b/config/dungeon_crawl.toml @@ -3,6 +3,8 @@ [general] #Enables the dungeon crawl tools. enable_tools = false + #This option will make pre-2.0.0 worlds playable with version 2.0.0 and later. + enable_dummy_pieces = false #World Generation Settings [world_generation] @@ -11,6 +13,8 @@ dungeon_probability = 0.26 #If this is set to false, no dungeons can be generated outside the overworld. ignore_dimension = false + #Makes the entire dungeon solid, preventing caves, ravines, etc... from interfering with the dungeon. + solid = false #Dungeon Settings [dungeon] @@ -19,22 +23,18 @@ #The Probability of a spawner entity having a shield in the offhand. #Range: 0.01 ~ 1.0 shield_probability = 0.25 + #Set this to true if you want to prevent that the last layer of each dungeon will contain nether content. + no_nether_stuff = false #If set to true, the dungeon generation will ignore the biome blacklist and generate dungeons in any overworld biome. ignore_overworld_blacklist = false #Determines if vanilla spawners or modified spawners with armor, weapons etc... should be used. use_vanilla_spawners = false + #Whether mobs from spawners should despawn naturally or not. + natural_despawn = true #This value defines how many mobs do get spawned manually during the generation. (if no_spawners = true, there is no effect otherwise) #Range: 0.001 ~ 1.0 mob_spawn_rate = 0.05 #The number of different entities per spawner. Increasing the number increases the diversity of the monster equipment. #Range: 1 ~ 128 spawner_entities = 8 - #The minumum amount of rooms for each dungeon layer. - #Range: 0 ~ 24 - layer_min_additions = 5 - #The amount of extra rooms per dungeon layer. A random number in the range [0 ~ layer_extra_additions-1] will be used. - #Range: 1 ~ 24 - layer_extra_additions = 6 - #Set this to true if you want to prevent that the last layer of each dungeon will contain nether content. - no_nether_stuff = false diff --git a/minecraftinstance.json b/minecraftinstance.json index eebf444..4ff1aaa 100644 --- a/minecraftinstance.json +++ b/minecraftinstance.json @@ -30,7 +30,7 @@ "isUnlocked": true, "javaArgsOverride": null, "javaDirOverride": null, - "lastPlayed": "2020-09-13T21:51:31.9395939Z", + "lastPlayed": "2020-09-14T19:08:01.7114468Z", "manifest": null, "fileDate": "0001-01-01T00:00:00", "installedModpack": null, @@ -3834,21 +3834,6 @@ "fileCount": 1, "fileSize": 65098 }, - { - "folderName": "The-Endergetic-Expansion-1.15.2-v1.3.2.jar", - "fingerprint": 1626731453, - "fileDateHash": 692036689, - "sectionID": 8, - "individualFingerprints": [ - 1626731453 - ], - "status": 1, - "timestamp": "2020-08-19T20:18:55.7278549Z", - "lastWriteTimeUtc": "2020-08-17T18:51:19.7524257Z", - "queryTimestamp": "2020-09-12T21:48:29.6941412Z", - "fileCount": 1, - "fileSize": 7083211 - }, { "folderName": "rftoolspower-1.15-2.2.4.jar", "fingerprint": 2833144682, @@ -3865,19 +3850,19 @@ "fileSize": 559054 }, { - "folderName": "FastFurnace-1.15.1-3.0.0.jar", - "fingerprint": 1662686374, - "fileDateHash": 1052884365, + "folderName": "The-Endergetic-Expansion-1.15.2-v1.3.2.jar", + "fingerprint": 1626731453, + "fileDateHash": 692036689, "sectionID": 8, "individualFingerprints": [ - 1662686374 + 1626731453 ], "status": 1, - "timestamp": "2020-03-08T18:37:54.9659469Z", - "lastWriteTimeUtc": "2020-03-07T19:18:16.9715655Z", - "queryTimestamp": "2020-09-12T21:48:29.6951391Z", + "timestamp": "2020-08-19T20:18:55.7278549Z", + "lastWriteTimeUtc": "2020-08-17T18:51:19.7524257Z", + "queryTimestamp": "2020-09-12T21:48:29.6941412Z", "fileCount": 1, - "fileSize": 15647 + "fileSize": 7083211 }, { "folderName": "BetterCaves-1.15.2-1.0.jar", @@ -3894,6 +3879,21 @@ "fileCount": 1, "fileSize": 470503 }, + { + "folderName": "FastFurnace-1.15.1-3.0.0.jar", + "fingerprint": 1662686374, + "fileDateHash": 1052884365, + "sectionID": 8, + "individualFingerprints": [ + 1662686374 + ], + "status": 1, + "timestamp": "2020-03-08T18:37:54.9659469Z", + "lastWriteTimeUtc": "2020-03-07T19:18:16.9715655Z", + "queryTimestamp": "2020-09-12T21:48:29.6951391Z", + "fileCount": 1, + "fileSize": 15647 + }, { "folderName": "New World (6)", "fingerprint": 2600808326, @@ -12709,7 +12709,7 @@ "dateInstalled": "2020-03-28T09:44:06.1422535Z", "dateUpdated": "2020-09-13T18:29:29.1142131Z", "dateLastUpdateAttempted": "2020-09-13T18:29:29.1142131Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -12901,14 +12901,14 @@ "addonID": 324973, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3022601, - "displayName": "DungeonCrawl-1.15.2-2.0.2", - "fileName": "DungeonCrawl-1.15.2-2.0.2.jar", - "fileDate": "2020-08-03T19:07:22.287Z", - "fileLength": 385478, + "id": 3056984, + "displayName": "DungeonCrawl-1.15.2-2.1.0", + "fileName": "DungeonCrawl-1.15.2-2.1.0.jar", + "fileDate": "2020-09-14T11:55:18.36Z", + "fileLength": 465249, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3022/601/DungeonCrawl-1.15.2-2.0.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3056/984/DungeonCrawl-1.15.2-2.1.0.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -12916,17 +12916,17 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2395449958, + "fingerprint": 651892591, "type": 0 }, { "foldername": "xiroc", - "fingerprint": 4254294247, + "fingerprint": 1125582123, "type": 0 }, { "foldername": "data", - "fingerprint": 175409657, + "fingerprint": 3357669085, "type": 0 }, { @@ -12935,10 +12935,9 @@ "type": 0 } ], - "packageFingerprint": 2397197383, + "packageFingerprint": 2360576658, "gameVersion": [ "1.15", - "Forge", "1.15.2", "1.15.1" ], @@ -12948,15 +12947,15 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "DungeonCrawl-1.15.2-2.0.2.jar" + "FileNameOnDisk": "DungeonCrawl-1.15.2-2.1.0.jar" }, "dateInstalled": "2020-03-12T19:18:50.7383359Z", - "dateUpdated": "2020-08-03T19:57:51.4332875Z", - "dateLastUpdateAttempted": "2020-08-03T19:57:51.4332875Z", - "status": 5, + "dateUpdated": "2020-09-14T19:06:39.1381068Z", + "dateLastUpdateAttempted": "2020-09-14T19:06:39.1381068Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -13870,14 +13869,14 @@ "addonID": 399630, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3054765, - "displayName": "EmendatusEnigmatica-1.15.2-1.0.6", - "fileName": "EmendatusEnigmatica-1.15.2-1.0.6.jar", - "fileDate": "2020-09-11T18:44:44.383Z", - "fileLength": 1889399, + "id": 3056947, + "displayName": "EmendatusEnigmatica-1.15.2-1.0.7", + "fileName": "EmendatusEnigmatica-1.15.2-1.0.7.jar", + "fileDate": "2020-09-14T10:25:01.87Z", + "fileLength": 1904170, "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3054/765/EmendatusEnigmatica-1.15.2-1.0.6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3056/947/EmendatusEnigmatica-1.15.2-1.0.7.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -13885,27 +13884,27 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2664278125, + "fingerprint": 2478216520, "type": 0 }, { "foldername": "com", - "fingerprint": 2295003451, + "fingerprint": 336521678, "type": 0 }, { "foldername": ".cache", - "fingerprint": 3526705546, + "fingerprint": 4277575909, "type": 0 }, { "foldername": "assets", - "fingerprint": 1834096350, + "fingerprint": 3499334543, "type": 0 }, { "foldername": "data", - "fingerprint": 1352486017, + "fingerprint": 1159675807, "type": 0 }, { @@ -13919,7 +13918,7 @@ "type": 0 } ], - "packageFingerprint": 3328536993, + "packageFingerprint": 764508960, "gameVersion": [ "Forge", "1.15.2" @@ -13933,12 +13932,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "EmendatusEnigmatica-1.15.2-1.0.6.jar" + "FileNameOnDisk": "EmendatusEnigmatica-1.15.2-1.0.7.jar" }, "dateInstalled": "2020-08-06T21:18:41.2574262Z", - "dateUpdated": "2020-09-11T19:01:02.6988006Z", - "dateLastUpdateAttempted": "2020-09-11T19:01:02.6988006Z", - "status": 5, + "dateUpdated": "2020-09-14T19:06:41.2022227Z", + "dateLastUpdateAttempted": "2020-09-14T19:06:41.2022227Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -14122,26 +14121,26 @@ "addonID": 292692, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3036453, - "displayName": "Transport-1.15.2-2.4.0.jar", - "fileName": "Transport-1.15.2-2.4.0.jar", - "fileDate": "2020-08-19T02:35:11.053Z", - "fileLength": 399882, + "id": 3056781, + "displayName": "Transport-1.15.2-2.4.1.jar", + "fileName": "Transport-1.15.2-2.4.1.jar", + "fileDate": "2020-09-14T02:49:27.523Z", + "fileLength": 402492, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3036/453/Transport-1.15.2-2.4.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3056/781/Transport-1.15.2-2.4.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 287342, + "addonId": 306770, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 306770, + "addonId": 287342, "type": 3, "fileId": 0 } @@ -14150,12 +14149,12 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1783628451, + "fingerprint": 3344476422, "type": 0 }, { "foldername": "xyz", - "fingerprint": 3614853671, + "fingerprint": 1028801403, "type": 0 }, { @@ -14184,7 +14183,7 @@ "type": 0 } ], - "packageFingerprint": 2321826009, + "packageFingerprint": 2485146229, "gameVersion": [ "Forge", "1.15.2" @@ -14198,12 +14197,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Transport-1.15.2-2.4.0.jar" + "FileNameOnDisk": "Transport-1.15.2-2.4.1.jar" }, "dateInstalled": "2020-03-29T09:55:53.8446403Z", - "dateUpdated": "2020-08-19T20:16:57.7065932Z", - "dateLastUpdateAttempted": "2020-08-19T20:16:57.7065932Z", - "status": 5, + "dateUpdated": "2020-09-14T19:07:43.2230113Z", + "dateLastUpdateAttempted": "2020-09-14T19:07:43.2230113Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -17264,7 +17263,7 @@ "dateInstalled": "2020-09-12T20:15:52.492471Z", "dateUpdated": "2020-09-12T20:15:52.4994521Z", "dateLastUpdateAttempted": "2020-09-12T20:15:52.4994521Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -18282,17 +18281,17 @@ "installedTargets": null }, { - "addonID": 232131, + "addonID": 237701, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2880426, - "displayName": "DefaultOptions_1.15.2-11.0.1.jar", - "fileName": "DefaultOptions_1.15.2-11.0.1.jar", - "fileDate": "2020-02-12T19:13:07.807Z", - "fileLength": 14518, - "releaseType": 2, + "id": 2950766, + "displayName": "ReAuth-3.8.1", + "fileName": "ReAuth-1.14-1.15-3.8.1.jar", + "fileDate": "2020-05-07T17:10:02.14Z", + "fileLength": 35214, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2880/426/DefaultOptions_1.15.2-11.0.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2950/766/ReAuth-1.14-1.15-3.8.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -18300,23 +18299,32 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1631546758, + "fingerprint": 945673420, "type": 0 }, { - "foldername": "net", - "fingerprint": 1884610213, + "foldername": "technicianlp", + "fingerprint": 276999311, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 3230626572, + "fingerprint": 1864659022, + "type": 0 + }, + { + "foldername": "assets", + "fingerprint": 2706950255, "type": 0 } ], - "packageFingerprint": 2769955196, + "packageFingerprint": 3893751770, "gameVersion": [ - "1.15.2" + "1.14.4", + "1.15", + "Forge", + "1.15.2", + "1.15.1" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -18324,14 +18332,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2020-01-22T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "DefaultOptions_1.15.2-11.0.1.jar" + "FileNameOnDisk": "ReAuth-1.14-1.15-3.8.1.jar" }, - "dateInstalled": "2020-02-02T19:05:36.1404592Z", - "dateUpdated": "2020-02-13T19:40:45.2989238Z", - "dateLastUpdateAttempted": "2020-02-13T19:40:45.2989238Z", + "dateInstalled": "2020-01-31T19:34:23.153912Z", + "dateUpdated": "2020-05-12T20:34:38.7259969Z", + "dateLastUpdateAttempted": "2020-05-12T20:34:38.7259969Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -18344,17 +18352,17 @@ "installedTargets": null }, { - "addonID": 237701, + "addonID": 232131, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2950766, - "displayName": "ReAuth-3.8.1", - "fileName": "ReAuth-1.14-1.15-3.8.1.jar", - "fileDate": "2020-05-07T17:10:02.14Z", - "fileLength": 35214, - "releaseType": 1, + "id": 2880426, + "displayName": "DefaultOptions_1.15.2-11.0.1.jar", + "fileName": "DefaultOptions_1.15.2-11.0.1.jar", + "fileDate": "2020-02-12T19:13:07.807Z", + "fileLength": 14518, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2950/766/ReAuth-1.14-1.15-3.8.1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2880/426/DefaultOptions_1.15.2-11.0.1.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -18362,32 +18370,23 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 945673420, + "fingerprint": 1631546758, "type": 0 }, { - "foldername": "technicianlp", - "fingerprint": 276999311, + "foldername": "net", + "fingerprint": 1884610213, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 1864659022, - "type": 0 - }, - { - "foldername": "assets", - "fingerprint": 2706950255, + "fingerprint": 3230626572, "type": 0 } ], - "packageFingerprint": 3893751770, + "packageFingerprint": 2769955196, "gameVersion": [ - "1.14.4", - "1.15", - "Forge", - "1.15.2", - "1.15.1" + "1.15.2" ], "hasInstallScript": false, "isCompatibleWithClient": false, @@ -18395,14 +18394,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2020-01-22T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ReAuth-1.14-1.15-3.8.1.jar" + "FileNameOnDisk": "DefaultOptions_1.15.2-11.0.1.jar" }, - "dateInstalled": "2020-01-31T19:34:23.153912Z", - "dateUpdated": "2020-05-12T20:34:38.7259969Z", - "dateLastUpdateAttempted": "2020-05-12T20:34:38.7259969Z", + "dateInstalled": "2020-02-02T19:05:36.1404592Z", + "dateUpdated": "2020-02-13T19:40:45.2989238Z", + "dateLastUpdateAttempted": "2020-02-13T19:40:45.2989238Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -18493,23 +18492,23 @@ "installedTargets": null }, { - "addonID": 245506, + "addonID": 291737, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3056249, - "displayName": "minecolonies-0.13.251-ALPHA-universal.jar", - "fileName": "minecolonies-0.13.251-ALPHA-universal.jar", - "fileDate": "2020-09-13T15:35:15.523Z", - "fileLength": 32673373, - "releaseType": 3, + "id": 3054246, + "displayName": "thermal_innovation-1.15.2-0.2.2b.jar", + "fileName": "thermal_innovation-1.15.2-0.2.2b.jar", + "fileDate": "2020-09-11T03:35:28.387Z", + "fileLength": 93664, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3056/249/minecolonies-0.13.251-ALPHA-universal.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3054/246/thermal_innovation-1.15.2-0.2.2b.jar", "isAlternate": false, - "alternateFileId": 3056250, + "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 298744, + "addonId": 222880, "type": 3, "fileId": 0 } @@ -18518,32 +18517,38 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 85637723, + "fingerprint": 772759795, "type": 0 }, { - "foldername": "com", - "fingerprint": 3936111102, + "foldername": "cofh", + "fingerprint": 1464404833, + "type": 0 + }, + { + "foldername": "assets", + "fingerprint": 1622474079, "type": 0 }, { "foldername": "data", - "fingerprint": 3255767755, + "fingerprint": 3353708073, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 1355987511, + "foldername": "logo.png", + "fingerprint": 721674231, "type": 0 }, { - "foldername": "assets", - "fingerprint": 12787681, + "foldername": "pack.mcmeta", + "fingerprint": 4253522632, "type": 0 } ], - "packageFingerprint": 1768248342, + "packageFingerprint": 623559186, "gameVersion": [ + "Forge", "1.15.2" ], "hasInstallScript": false, @@ -18555,12 +18560,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "minecolonies-0.13.251-ALPHA-universal.jar" + "FileNameOnDisk": "thermal_innovation-1.15.2-0.2.2b.jar" }, - "dateInstalled": "2020-07-28T15:30:44.1670577Z", - "dateUpdated": "2020-09-13T18:14:18.5322822Z", - "dateLastUpdateAttempted": "2020-09-13T18:14:18.5322822Z", - "status": 4, + "dateInstalled": "2020-09-08T11:11:21.4280209Z", + "dateUpdated": "2020-09-11T18:22:16.9879454Z", + "dateLastUpdateAttempted": "2020-09-11T18:22:16.9879454Z", + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -18572,23 +18577,23 @@ "installedTargets": null }, { - "addonID": 291737, + "addonID": 245506, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3054246, - "displayName": "thermal_innovation-1.15.2-0.2.2b.jar", - "fileName": "thermal_innovation-1.15.2-0.2.2b.jar", - "fileDate": "2020-09-11T03:35:28.387Z", - "fileLength": 93664, - "releaseType": 2, + "id": 3057115, + "displayName": "minecolonies-0.13.257-ALPHA-universal.jar", + "fileName": "minecolonies-0.13.257-ALPHA-universal.jar", + "fileDate": "2020-09-14T16:39:36.08Z", + "fileLength": 32707174, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3054/246/thermal_innovation-1.15.2-0.2.2b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/115/minecolonies-0.13.257-ALPHA-universal.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3057116, "dependencies": [ { "id": 0, - "addonId": 222880, + "addonId": 298744, "type": 3, "fileId": 0 } @@ -18597,38 +18602,32 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 772759795, + "fingerprint": 1771402436, "type": 0 }, { - "foldername": "cofh", - "fingerprint": 1464404833, + "foldername": "com", + "fingerprint": 2494840528, "type": 0 }, { "foldername": "assets", - "fingerprint": 1622474079, + "fingerprint": 404263616, "type": 0 }, { "foldername": "data", - "fingerprint": 3353708073, - "type": 0 - }, - { - "foldername": "logo.png", - "fingerprint": 721674231, + "fingerprint": 3255767755, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 4253522632, + "fingerprint": 1355987511, "type": 0 } ], - "packageFingerprint": 623559186, + "packageFingerprint": 1121726036, "gameVersion": [ - "Forge", "1.15.2" ], "hasInstallScript": false, @@ -18640,12 +18639,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal_innovation-1.15.2-0.2.2b.jar" + "FileNameOnDisk": "minecolonies-0.13.257-ALPHA-universal.jar" }, - "dateInstalled": "2020-09-08T11:11:21.4280209Z", - "dateUpdated": "2020-09-11T18:22:16.9879454Z", - "dateLastUpdateAttempted": "2020-09-11T18:22:16.9879454Z", - "status": 5, + "dateInstalled": "2020-07-28T15:30:44.1670577Z", + "dateUpdated": "2020-09-14T19:07:18.2938071Z", + "dateLastUpdateAttempted": "2020-09-14T19:07:18.2938071Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -19437,58 +19436,45 @@ "installedTargets": null }, { - "addonID": 242195, + "addonID": 316833, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3008857, - "displayName": "DarkUtilities-1.15.2-3.1.8.jar", - "fileName": "DarkUtilities-1.15.2-3.1.8.jar", - "fileDate": "2020-07-19T08:46:21.8Z", - "fileLength": 226380, - "releaseType": 3, + "id": 3008248, + "displayName": "ObserverLib-1.15.2-1.2.0.jar", + "fileName": "observerlib-1.15.2-1.2.0.v60.jar", + "fileDate": "2020-07-18T14:57:05.08Z", + "fileLength": 136840, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3008/857/DarkUtilities-1.15.2-3.1.8.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3008/248/observerlib-1.15.2-1.2.0.v60.jar", "isAlternate": false, - "alternateFileId": 3008858, - "dependencies": [ - { - "id": 0, - "addonId": 228525, - "type": 3, - "fileId": 0 - } - ], - "isAvailable": true, - "modules": [ + "alternateFileId": 0, + "dependencies": [], + "isAvailable": true, + "modules": [ { "foldername": "META-INF", - "fingerprint": 455236725, - "type": 0 - }, - { - "foldername": "net", - "fingerprint": 1250209018, + "fingerprint": 697129792, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 3964858735, + "foldername": "hellfirepvp", + "fingerprint": 1405202566, "type": 0 }, { - "foldername": "data", - "fingerprint": 3646704657, + "foldername": "javascript", + "fingerprint": 2500950056, "type": 0 }, { - "foldername": "assets", - "fingerprint": 3867092409, + "foldername": "pack.mcmeta", + "fingerprint": 2246455818, "type": 0 } ], - "packageFingerprint": 3408513567, + "packageFingerprint": 791305141, "gameVersion": [ - "Forge", "1.15.2" ], "hasInstallScript": false, @@ -19500,11 +19486,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "DarkUtilities-1.15.2-3.1.8.jar" + "FileNameOnDisk": "observerlib-1.15.2-1.2.0.v60.jar" }, - "dateInstalled": "2020-03-28T09:44:06.1751275Z", - "dateUpdated": "2020-07-21T19:55:17.9049887Z", - "dateLastUpdateAttempted": "2020-07-21T19:55:17.9049887Z", + "dateInstalled": "2020-08-01T19:17:16.0211477Z", + "dateUpdated": "2020-08-01T19:17:16.02315Z", + "dateLastUpdateAttempted": "2020-08-01T19:17:16.02315Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -19517,45 +19503,58 @@ "installedTargets": null }, { - "addonID": 316833, + "addonID": 242195, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3008248, - "displayName": "ObserverLib-1.15.2-1.2.0.jar", - "fileName": "observerlib-1.15.2-1.2.0.v60.jar", - "fileDate": "2020-07-18T14:57:05.08Z", - "fileLength": 136840, - "releaseType": 1, + "id": 3008857, + "displayName": "DarkUtilities-1.15.2-3.1.8.jar", + "fileName": "DarkUtilities-1.15.2-3.1.8.jar", + "fileDate": "2020-07-19T08:46:21.8Z", + "fileLength": 226380, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3008/248/observerlib-1.15.2-1.2.0.v60.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3008/857/DarkUtilities-1.15.2-3.1.8.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], + "alternateFileId": 3008858, + "dependencies": [ + { + "id": 0, + "addonId": 228525, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 697129792, + "fingerprint": 455236725, "type": 0 }, { - "foldername": "hellfirepvp", - "fingerprint": 1405202566, + "foldername": "net", + "fingerprint": 1250209018, "type": 0 }, { - "foldername": "javascript", - "fingerprint": 2500950056, + "foldername": "pack.mcmeta", + "fingerprint": 3964858735, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 2246455818, + "foldername": "data", + "fingerprint": 3646704657, + "type": 0 + }, + { + "foldername": "assets", + "fingerprint": 3867092409, "type": 0 } ], - "packageFingerprint": 791305141, + "packageFingerprint": 3408513567, "gameVersion": [ + "Forge", "1.15.2" ], "hasInstallScript": false, @@ -19567,11 +19566,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "observerlib-1.15.2-1.2.0.v60.jar" + "FileNameOnDisk": "DarkUtilities-1.15.2-3.1.8.jar" }, - "dateInstalled": "2020-08-01T19:17:16.0211477Z", - "dateUpdated": "2020-08-01T19:17:16.02315Z", - "dateLastUpdateAttempted": "2020-08-01T19:17:16.02315Z", + "dateInstalled": "2020-03-28T09:44:06.1751275Z", + "dateUpdated": "2020-07-21T19:55:17.9049887Z", + "dateLastUpdateAttempted": "2020-07-21T19:55:17.9049887Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -20192,78 +20191,6 @@ "manifestName": null, "installedTargets": null }, - { - "addonID": 351948, - "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", - "installedFile": { - "id": 2912824, - "displayName": "Mining Helmet 1.15.2-v1.0.8", - "fileName": "mining-helmet-1.15.2-1.0.8.jar", - "fileDate": "2020-03-26T00:02:58.673Z", - "fileLength": 34303, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2912/824/mining-helmet-1.15.2-1.0.8.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 214238143, - "type": 0 - }, - { - "foldername": "com", - "fingerprint": 2991367495, - "type": 0 - }, - { - "foldername": "assets", - "fingerprint": 258773674, - "type": 0 - }, - { - "foldername": "data", - "fingerprint": 3140047221, - "type": 0 - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 4253522632, - "type": 0 - } - ], - "packageFingerprint": 122181231, - "gameVersion": [ - "1.15.2" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2020-01-22T00:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "mining-helmet-1.15.2-1.0.8.jar" - }, - "dateInstalled": "2020-07-05T20:35:10.6034753Z", - "dateUpdated": "2020-07-05T20:35:10.8518107Z", - "dateLastUpdateAttempted": "2020-07-05T20:35:10.8518107Z", - "status": 5, - "preferenceAutoInstallUpdates": false, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, { "addonID": 271740, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", @@ -20339,58 +20266,50 @@ "installedTargets": null }, { - "addonID": 250577, + "addonID": 351948, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2936509, - "displayName": "AkashicTome-1.3-13.jar", - "fileName": "AkashicTome-1.3-13.jar", - "fileDate": "2020-04-21T12:17:52.893Z", - "fileLength": 39737, + "id": 2912824, + "displayName": "Mining Helmet 1.15.2-v1.0.8", + "fileName": "mining-helmet-1.15.2-1.0.8.jar", + "fileDate": "2020-03-26T00:02:58.673Z", + "fileLength": 34303, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2936/509/AkashicTome-1.3-13.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2912/824/mining-helmet-1.15.2-1.0.8.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 250363, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4187856036, + "fingerprint": 214238143, "type": 0 }, { - "foldername": "vazkii", - "fingerprint": 122177015, + "foldername": "com", + "fingerprint": 2991367495, "type": 0 }, { "foldername": "assets", - "fingerprint": 19176750, + "fingerprint": 258773674, "type": 0 }, { "foldername": "data", - "fingerprint": 1646269815, + "fingerprint": 3140047221, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 3481267785, + "fingerprint": 4253522632, "type": 0 } ], - "packageFingerprint": 4134879910, + "packageFingerprint": 122181231, "gameVersion": [ - "Forge", "1.15.2" ], "hasInstallScript": false, @@ -20399,14 +20318,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2020-01-22T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "AkashicTome-1.3-13.jar" + "FileNameOnDisk": "mining-helmet-1.15.2-1.0.8.jar" }, - "dateInstalled": "2020-04-23T18:01:56.548777Z", - "dateUpdated": "2020-04-23T18:01:56.6805915Z", - "dateLastUpdateAttempted": "2020-04-23T18:01:56.6805915Z", + "dateInstalled": "2020-07-05T20:35:10.6034753Z", + "dateUpdated": "2020-07-05T20:35:10.8518107Z", + "dateLastUpdateAttempted": "2020-07-05T20:35:10.8518107Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -20538,23 +20457,23 @@ "installedTargets": null }, { - "addonID": 272302, + "addonID": 250577, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3005715, - "displayName": "Refined Storage Addons 0.6.3", - "fileName": "refinedstorageaddons-0.6.3.jar", - "fileDate": "2020-07-15T17:14:20.21Z", - "fileLength": 28802, + "id": 2936509, + "displayName": "AkashicTome-1.3-13.jar", + "fileName": "AkashicTome-1.3-13.jar", + "fileDate": "2020-04-21T12:17:52.893Z", + "fileLength": 39737, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3005/715/refinedstorageaddons-0.6.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2936/509/AkashicTome-1.3-13.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 243076, + "addonId": 250363, "type": 3, "fileId": 0 } @@ -20563,31 +20482,31 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1492893546, + "fingerprint": 4187856036, "type": 0 }, { - "foldername": "com", - "fingerprint": 4231172936, + "foldername": "vazkii", + "fingerprint": 122177015, "type": 0 }, { "foldername": "assets", - "fingerprint": 1327761641, + "fingerprint": 19176750, "type": 0 }, { "foldername": "data", - "fingerprint": 3871752191, + "fingerprint": 1646269815, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 3161986055, + "fingerprint": 3481267785, "type": 0 } ], - "packageFingerprint": 2000841567, + "packageFingerprint": 4134879910, "gameVersion": [ "Forge", "1.15.2" @@ -20601,11 +20520,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "refinedstorageaddons-0.6.3.jar" + "FileNameOnDisk": "AkashicTome-1.3-13.jar" }, - "dateInstalled": "2020-01-31T20:26:05.1578323Z", - "dateUpdated": "2020-07-15T19:39:05.1425069Z", - "dateLastUpdateAttempted": "2020-07-15T19:39:05.1425069Z", + "dateInstalled": "2020-04-23T18:01:56.548777Z", + "dateUpdated": "2020-04-23T18:01:56.6805915Z", + "dateLastUpdateAttempted": "2020-04-23T18:01:56.6805915Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -20618,10 +20537,90 @@ "installedTargets": null }, { - "addonID": 287342, + "addonID": 272302, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2980252, + "id": 3005715, + "displayName": "Refined Storage Addons 0.6.3", + "fileName": "refinedstorageaddons-0.6.3.jar", + "fileDate": "2020-07-15T17:14:20.21Z", + "fileLength": 28802, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/3005/715/refinedstorageaddons-0.6.3.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ + { + "id": 0, + "addonId": 243076, + "type": 3, + "fileId": 0 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 1492893546, + "type": 0 + }, + { + "foldername": "com", + "fingerprint": 4231172936, + "type": 0 + }, + { + "foldername": "assets", + "fingerprint": 1327761641, + "type": 0 + }, + { + "foldername": "data", + "fingerprint": 3871752191, + "type": 0 + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 3161986055, + "type": 0 + } + ], + "packageFingerprint": 2000841567, + "gameVersion": [ + "Forge", + "1.15.2" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "refinedstorageaddons-0.6.3.jar" + }, + "dateInstalled": "2020-01-31T20:26:05.1578323Z", + "dateUpdated": "2020-07-15T19:39:05.1425069Z", + "dateLastUpdateAttempted": "2020-07-15T19:39:05.1425069Z", + "status": 5, + "preferenceAutoInstallUpdates": false, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 287342, + "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", + "installedFile": { + "id": 2980252, "displayName": "titanium-1.15.2-2.4.2.jar", "fileName": "titanium-1.15.2-2.4.2.jar", "fileDate": "2020-06-14T19:15:15.267Z", @@ -21043,39 +21042,71 @@ "installedTargets": null }, { - "addonID": 256717, + "addonID": 316873, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3041924, - "displayName": "Clumps-5.0.2.6.jar", - "fileName": "Clumps-5.0.2.6.jar", - "fileDate": "2020-08-25T15:20:54.173Z", - "fileLength": 13313, + "id": 2880784, + "displayName": "curioofundying-FORGE-1.15.2-3.0.jar", + "fileName": "curioofundying-FORGE-1.15.2-3.0.jar", + "fileDate": "2020-02-13T07:40:38.56Z", + "fileLength": 26321, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3041/924/Clumps-5.0.2.6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2880/784/curioofundying-FORGE-1.15.2-3.0.jar", "isAlternate": false, - "alternateFileId": 3041925, - "dependencies": [], + "alternateFileId": 2880785, + "dependencies": [ + { + "id": 0, + "addonId": 309927, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1250379429, + "fingerprint": 2194353379, "type": 0 }, { - "foldername": "com", - "fingerprint": 1085893994, + "foldername": "top", + "fingerprint": 2083467830, + "type": 0 + }, + { + "foldername": "CHANGELOG.md", + "fingerprint": 1426454620, + "type": 0 + }, + { + "foldername": "curioofundying_icon.png", + "fingerprint": 871239941, + "type": 0 + }, + { + "foldername": "data", + "fingerprint": 2806061578, + "type": 0 + }, + { + "foldername": "licenses", + "fingerprint": 520874550, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 4178614280, + "fingerprint": 391677537, + "type": 0 + }, + { + "foldername": "README.md", + "fingerprint": 3907935422, "type": 0 } ], - "packageFingerprint": 1584814646, + "packageFingerprint": 3904465126, "gameVersion": [ "Forge", "1.15.2" @@ -21089,11 +21120,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Clumps-5.0.2.6.jar" + "FileNameOnDisk": "curioofundying-FORGE-1.15.2-3.0.jar" }, - "dateInstalled": "2020-07-12T21:56:56.7585127Z", - "dateUpdated": "2020-08-26T18:54:29.1269159Z", - "dateLastUpdateAttempted": "2020-08-26T18:54:29.1269159Z", + "dateInstalled": "2020-02-13T19:33:13.0240236Z", + "dateUpdated": "2020-02-13T19:33:13.1320157Z", + "dateLastUpdateAttempted": "2020-02-13T19:33:13.1320157Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -21190,71 +21221,114 @@ "installedTargets": null }, { - "addonID": 316873, + "addonID": 256717, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2880784, - "displayName": "curioofundying-FORGE-1.15.2-3.0.jar", - "fileName": "curioofundying-FORGE-1.15.2-3.0.jar", - "fileDate": "2020-02-13T07:40:38.56Z", - "fileLength": 26321, + "id": 3041924, + "displayName": "Clumps-5.0.2.6.jar", + "fileName": "Clumps-5.0.2.6.jar", + "fileDate": "2020-08-25T15:20:54.173Z", + "fileLength": 13313, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2880/784/curioofundying-FORGE-1.15.2-3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3041/924/Clumps-5.0.2.6.jar", "isAlternate": false, - "alternateFileId": 2880785, - "dependencies": [ - { - "id": 0, - "addonId": 309927, - "type": 3, - "fileId": 0 - } - ], + "alternateFileId": 3041925, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2194353379, + "fingerprint": 1250379429, "type": 0 }, { - "foldername": "top", - "fingerprint": 2083467830, + "foldername": "com", + "fingerprint": 1085893994, "type": 0 }, { - "foldername": "CHANGELOG.md", - "fingerprint": 1426454620, + "foldername": "pack.mcmeta", + "fingerprint": 4178614280, "type": 0 - }, + } + ], + "packageFingerprint": 1584814646, + "gameVersion": [ + "Forge", + "1.15.2" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "Clumps-5.0.2.6.jar" + }, + "dateInstalled": "2020-07-12T21:56:56.7585127Z", + "dateUpdated": "2020-08-26T18:54:29.1269159Z", + "dateLastUpdateAttempted": "2020-08-26T18:54:29.1269159Z", + "status": 5, + "preferenceAutoInstallUpdates": false, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 314093, + "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", + "installedFile": { + "id": 2969303, + "displayName": "whoops-1.15.2-0.0.1.3.jar", + "fileName": "whoops-1.15.2-0.0.1.3.jar", + "fileDate": "2020-05-31T04:17:29.99Z", + "fileLength": 29544, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/2969/303/whoops-1.15.2-0.0.1.3.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ { - "foldername": "curioofundying_icon.png", - "fingerprint": 871239941, - "type": 0 - }, + "id": 0, + "addonId": 225643, + "type": 3, + "fileId": 0 + } + ], + "isAvailable": true, + "modules": [ { - "foldername": "data", - "fingerprint": 2806061578, + "foldername": "META-INF", + "fingerprint": 324196010, "type": 0 }, { - "foldername": "licenses", - "fingerprint": 520874550, + "foldername": "noobanidus", + "fingerprint": 3069214470, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 391677537, + "foldername": "assets", + "fingerprint": 3500852102, "type": 0 }, { - "foldername": "README.md", - "fingerprint": 3907935422, + "foldername": "pack.mcmeta", + "fingerprint": 2517860023, "type": 0 } ], - "packageFingerprint": 3904465126, + "packageFingerprint": 1304413506, "gameVersion": [ "Forge", "1.15.2" @@ -21265,14 +21339,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "curioofundying-FORGE-1.15.2-3.0.jar" + "FileNameOnDisk": "whoops-1.15.2-0.0.1.3.jar" }, - "dateInstalled": "2020-02-13T19:33:13.0240236Z", - "dateUpdated": "2020-02-13T19:33:13.1320157Z", - "dateLastUpdateAttempted": "2020-02-13T19:33:13.1320157Z", + "dateInstalled": "2020-04-16T18:05:49.2002787Z", + "dateUpdated": "2020-05-31T09:15:31.027786Z", + "dateLastUpdateAttempted": "2020-05-31T09:15:31.027786Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -21386,81 +21460,6 @@ "manifestName": null, "installedTargets": null }, - { - "addonID": 314093, - "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", - "installedFile": { - "id": 2969303, - "displayName": "whoops-1.15.2-0.0.1.3.jar", - "fileName": "whoops-1.15.2-0.0.1.3.jar", - "fileDate": "2020-05-31T04:17:29.99Z", - "fileLength": 29544, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2969/303/whoops-1.15.2-0.0.1.3.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 225643, - "type": 3, - "fileId": 0 - } - ], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 324196010, - "type": 0 - }, - { - "foldername": "noobanidus", - "fingerprint": 3069214470, - "type": 0 - }, - { - "foldername": "assets", - "fingerprint": 3500852102, - "type": 0 - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 2517860023, - "type": 0 - } - ], - "packageFingerprint": 1304413506, - "gameVersion": [ - "Forge", - "1.15.2" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "whoops-1.15.2-0.0.1.3.jar" - }, - "dateInstalled": "2020-04-16T18:05:49.2002787Z", - "dateUpdated": "2020-05-31T09:15:31.027786Z", - "dateLastUpdateAttempted": "2020-05-31T09:15:31.027786Z", - "status": 5, - "preferenceAutoInstallUpdates": false, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, { "addonID": 318551, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", @@ -21975,45 +21974,71 @@ "installedTargets": null }, { - "addonID": 235577, + "addonID": 383182, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2873613, - "displayName": "TrashSlot_1.15.2-11.0.0.jar", - "fileName": "TrashSlot_1.15.2-11.0.0.jar", - "fileDate": "2020-02-02T09:15:42.473Z", - "fileLength": 60755, - "releaseType": 2, + "id": 2956029, + "displayName": "XNetGases-1.15.2-1.0.0.jar", + "fileName": "XNetGases-1.15.2-1.0.0.jar", + "fileDate": "2020-05-13T18:43:07.127Z", + "fileLength": 139878, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2873/613/TrashSlot_1.15.2-11.0.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2956/29/XNetGases-1.15.2-1.0.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 326041, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 268560, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 260912, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 233105, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4246659184, + "fingerprint": 3186711685, "type": 0 }, { - "foldername": "net", - "fingerprint": 1959376298, + "foldername": "terrails", + "fingerprint": 1582317102, "type": 0 }, { - "foldername": "assets", - "fingerprint": 989420890, + "foldername": "pack.mcmeta", + "fingerprint": 1646317105, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 3514838989, + "foldername": "xnetgases.png", + "fingerprint": 224484208, "type": 0 } ], - "packageFingerprint": 787886344, + "packageFingerprint": 3797195481, "gameVersion": [ + "Forge", "1.15.2" ], "hasInstallScript": false, @@ -22022,14 +22047,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2020-01-22T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "TrashSlot_1.15.2-11.0.0.jar" + "FileNameOnDisk": "XNetGases-1.15.2-1.0.0.jar" }, - "dateInstalled": "2020-02-02T19:16:54.7180056Z", - "dateUpdated": "2020-02-02T19:16:54.7200209Z", - "dateLastUpdateAttempted": "2020-02-02T19:16:54.7200209Z", + "dateInstalled": "2020-05-14T17:36:59.8689747Z", + "dateUpdated": "2020-05-14T17:36:59.8689747Z", + "dateLastUpdateAttempted": "2020-05-14T17:36:59.8689747Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -22109,71 +22134,45 @@ "installedTargets": null }, { - "addonID": 383182, + "addonID": 235577, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2956029, - "displayName": "XNetGases-1.15.2-1.0.0.jar", - "fileName": "XNetGases-1.15.2-1.0.0.jar", - "fileDate": "2020-05-13T18:43:07.127Z", - "fileLength": 139878, - "releaseType": 1, + "id": 2873613, + "displayName": "TrashSlot_1.15.2-11.0.0.jar", + "fileName": "TrashSlot_1.15.2-11.0.0.jar", + "fileDate": "2020-02-02T09:15:42.473Z", + "fileLength": 60755, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2956/29/XNetGases-1.15.2-1.0.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2873/613/TrashSlot_1.15.2-11.0.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 326041, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 268560, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 260912, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 233105, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3186711685, + "fingerprint": 4246659184, "type": 0 }, { - "foldername": "terrails", - "fingerprint": 1582317102, + "foldername": "net", + "fingerprint": 1959376298, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 1646317105, + "foldername": "assets", + "fingerprint": 989420890, "type": 0 }, { - "foldername": "xnetgases.png", - "fingerprint": 224484208, + "foldername": "pack.mcmeta", + "fingerprint": 3514838989, "type": 0 } ], - "packageFingerprint": 3797195481, + "packageFingerprint": 787886344, "gameVersion": [ - "Forge", "1.15.2" ], "hasInstallScript": false, @@ -22182,14 +22181,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2020-01-22T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "XNetGases-1.15.2-1.0.0.jar" + "FileNameOnDisk": "TrashSlot_1.15.2-11.0.0.jar" }, - "dateInstalled": "2020-05-14T17:36:59.8689747Z", - "dateUpdated": "2020-05-14T17:36:59.8689747Z", - "dateLastUpdateAttempted": "2020-05-14T17:36:59.8689747Z", + "dateInstalled": "2020-02-02T19:16:54.7180056Z", + "dateUpdated": "2020-02-02T19:16:54.7200209Z", + "dateLastUpdateAttempted": "2020-02-02T19:16:54.7200209Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, From e42ed11d5250ebe5fc49c215108601677f3c3fd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 14 Sep 2020 21:35:53 +0200 Subject: [PATCH 16/39] Temporary fix for #489 --- config/terraforged/terraforged-generator.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/terraforged/terraforged-generator.json b/config/terraforged/terraforged-generator.json index 6c06c0d..6b44366 100644 --- a/config/terraforged/terraforged-generator.json +++ b/config/terraforged/terraforged-generator.json @@ -87,7 +87,7 @@ "value": "true" }, "customBiomeFeatures": { - "value": "true" + "value": "false" } } }, From 869caf71a1816644390fbcb2d30cd5fe997a563f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 14 Sep 2020 21:45:46 +0200 Subject: [PATCH 17/39] Energizing recipe for Uraninite, fixes #490 --- .../base/recipetypes/powah/energizing.js | 71 +++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/kubejs/data/enigmatica/kubejs/base/recipetypes/powah/energizing.js b/kubejs/data/enigmatica/kubejs/base/recipetypes/powah/energizing.js index 1148537..97f4143 100644 --- a/kubejs/data/enigmatica/kubejs/base/recipetypes/powah/energizing.js +++ b/kubejs/data/enigmatica/kubejs/base/recipetypes/powah/energizing.js @@ -11,4 +11,75 @@ events.listen('recipes', function (event) { count: 1 } }); + + event.recipes.powah.energizing({ + ingredients: [{ tag: 'forge:ingots/uranium' }], + energy: 5000, + result: { + item: 'powah:uraninite', + count: 1 + } + }); + event.recipes.powah.energizing({ + ingredients: [{ tag: 'forge:ingots/uranium' }, { tag: 'forge:ingots/uranium' }], + energy: 10000, + result: { + item: 'powah:uraninite', + count: 2 + } + }); + event.recipes.powah.energizing({ + ingredients: [ + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' } + ], + energy: 15000, + result: { + item: 'powah:uraninite', + count: 3 + } + }); + event.recipes.powah.energizing({ + ingredients: [ + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' } + ], + energy: 20000, + result: { + item: 'powah:uraninite', + count: 4 + } + }); + event.recipes.powah.energizing({ + ingredients: [ + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' } + ], + energy: 25000, + result: { + item: 'powah:uraninite', + count: 5 + } + }); + event.recipes.powah.energizing({ + ingredients: [ + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' }, + { tag: 'forge:ingots/uranium' } + ], + energy: 30000, + result: { + item: 'powah:uraninite', + count: 6 + } + }); }); From 23d0c0ccb175b794463d018a81dfcc9502f50c6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 14 Sep 2020 21:47:46 +0200 Subject: [PATCH 18/39] ordering --- kubejs/data/enigmatica/kubejs/base/recipes/remove.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/kubejs/data/enigmatica/kubejs/base/recipes/remove.js b/kubejs/data/enigmatica/kubejs/base/recipes/remove.js index d51bc7f..66b6cfd 100644 --- a/kubejs/data/enigmatica/kubejs/base/recipes/remove.js +++ b/kubejs/data/enigmatica/kubejs/base/recipes/remove.js @@ -5,7 +5,7 @@ events.listen('recipes', function (event) { var outputRemovals = [ 'akashictome:tome', - 'vanillaexcavators:stone_excavator', + 'mekanism:combiner', 'mekanism:basic_combining_factory', 'mekanism:advanced_combining_factory', @@ -17,7 +17,9 @@ events.listen('recipes', function (event) { 'morevanillalib:obsidian_shard', 'torchmaster:feral_flare_lantern', - 'torchmaster:megatorch' + 'torchmaster:megatorch', + + 'vanillaexcavators:stone_excavator' ]; var idRemovals = [ From 6b1be4c1e4ea7e505e158e9ea8f93e079bfdde51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 14 Sep 2020 21:54:48 +0200 Subject: [PATCH 19/39] Update settings.ps1 --- settings.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings.ps1 b/settings.ps1 index 084e045..52d7778 100644 --- a/settings.ps1 +++ b/settings.ps1 @@ -50,10 +50,10 @@ $CURSEFORGE_PROJECT_ID = 357692 # =====================================================================// # Default: "1.0.0" -$MODPACK_VERSION = "0.6.0" +$MODPACK_VERSION = "0.6.1" # Only used by the Changelog Generator -$LAST_MODPACK_VERSION = "0.5.5" +$LAST_MODPACK_VERSION = "0.6.0" $FORGE_VERSION = 31.2.36 From 13a7e2afcad43ea192dbef32125be1771cf2cb8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 14 Sep 2020 21:54:56 +0200 Subject: [PATCH 20/39] Piston now accepts forge:stone --- kubejs/data/enigmatica/kubejs/base/recipes/replace_input.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/kubejs/data/enigmatica/kubejs/base/recipes/replace_input.js b/kubejs/data/enigmatica/kubejs/base/recipes/replace_input.js index 764c366..5b86f72 100644 --- a/kubejs/data/enigmatica/kubejs/base/recipes/replace_input.js +++ b/kubejs/data/enigmatica/kubejs/base/recipes/replace_input.js @@ -69,4 +69,10 @@ events.listen('recipes', function (event) { event.replaceInput({}, 'thermal:sulfur', '#forge:gems/sulfur'); event.replaceInput({}, 'thermal:apatite', '#forge:gems/apatite'); event.replaceInput({}, 'thermal:niter', '#forge:gems/niter'); + + event.replaceInput( + { type: 'minecraft:crafting_shaped', output: 'minecraft:piston' }, + '#forge:cobblestone', + '#quark:stone_tool_materials' + ); }); From e4b0da92d94b8f18076f8a67d82e118416cba729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 14 Sep 2020 21:55:00 +0200 Subject: [PATCH 21/39] Update minecraftinstance.json --- minecraftinstance.json | 1923 ++++++++++++++++++---------------------- 1 file changed, 867 insertions(+), 1056 deletions(-) diff --git a/minecraftinstance.json b/minecraftinstance.json index 4ff1aaa..d1cda62 100644 --- a/minecraftinstance.json +++ b/minecraftinstance.json @@ -56,7 +56,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.8148451Z", "lastWriteTimeUtc": "2020-09-11T17:33:30.0128658Z", - "queryTimestamp": "2020-09-12T21:48:29.6058686Z", + "queryTimestamp": "2020-09-14T19:53:33.6368139Z", "fileCount": 1, "fileSize": 489418 }, @@ -71,7 +71,7 @@ "status": 1, "timestamp": "2020-04-03T18:13:43.7606904Z", "lastWriteTimeUtc": "2020-03-29T18:49:52.5887395Z", - "queryTimestamp": "2020-09-12T21:48:29.6068659Z", + "queryTimestamp": "2020-09-14T19:53:33.6378111Z", "fileCount": 1, "fileSize": 519243 }, @@ -86,10 +86,25 @@ "status": 1, "timestamp": "2020-08-19T20:18:54.6287925Z", "lastWriteTimeUtc": "2020-08-06T21:18:34.2551851Z", - "queryTimestamp": "2020-09-12T21:48:29.6068659Z", + "queryTimestamp": "2020-09-14T19:53:33.6378111Z", "fileCount": 1, "fileSize": 28893 }, + { + "folderName": "DungeonCrawl-1.15.2-2.1.0.jar", + "fingerprint": 2360576658, + "fileDateHash": 1125743858, + "sectionID": 8, + "individualFingerprints": [ + 2360576658 + ], + "status": 1, + "timestamp": "2020-09-14T19:53:32.2338034Z", + "lastWriteTimeUtc": "2020-09-14T19:06:39.1231816Z", + "queryTimestamp": "2020-09-14T19:53:33.6388105Z", + "fileCount": 1, + "fileSize": 465249 + }, { "folderName": "mcjtylib-1.15-4.1.7.jar", "fingerprint": 1574298075, @@ -101,7 +116,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.4302267Z", "lastWriteTimeUtc": "2020-08-28T17:38:49.1275823Z", - "queryTimestamp": "2020-09-12T21:48:29.6078633Z", + "queryTimestamp": "2020-09-14T19:53:33.6388105Z", "fileCount": 1, "fileSize": 539216 }, @@ -116,7 +131,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.8937391Z", "lastWriteTimeUtc": "2020-02-02T19:16:04.242673Z", - "queryTimestamp": "2020-09-12T21:48:29.6078633Z", + "queryTimestamp": "2020-09-14T19:53:33.6388105Z", "fileCount": 1, "fileSize": 38372 }, @@ -131,7 +146,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.7972468Z", "lastWriteTimeUtc": "2020-08-28T18:44:05.0554298Z", - "queryTimestamp": "2020-09-12T21:48:29.6078633Z", + "queryTimestamp": "2020-09-14T19:53:33.6398073Z", "fileCount": 1, "fileSize": 1420712 }, @@ -146,7 +161,7 @@ "status": 1, "timestamp": "2020-08-22T20:48:50.3782029Z", "lastWriteTimeUtc": "2020-08-22T19:43:48.4508279Z", - "queryTimestamp": "2020-09-12T21:48:29.6088612Z", + "queryTimestamp": "2020-09-14T19:53:33.6398073Z", "fileCount": 1, "fileSize": 125243 }, @@ -161,7 +176,7 @@ "status": 1, "timestamp": "2020-06-08T19:55:54.8582769Z", "lastWriteTimeUtc": "2020-05-31T09:15:30.9001268Z", - "queryTimestamp": "2020-09-12T21:48:29.6088612Z", + "queryTimestamp": "2020-09-14T19:53:33.6408029Z", "fileCount": 1, "fileSize": 29544 }, @@ -176,7 +191,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:17.0443343Z", "lastWriteTimeUtc": "2020-02-02T18:25:19.9931605Z", - "queryTimestamp": "2020-09-12T21:48:29.6108552Z", + "queryTimestamp": "2020-09-14T19:53:33.6408029Z", "fileCount": 1, "fileSize": 2414041 }, @@ -191,7 +206,7 @@ "status": 1, "timestamp": "2020-03-09T19:11:48.4158799Z", "lastWriteTimeUtc": "2020-03-09T18:47:03.2102772Z", - "queryTimestamp": "2020-09-12T21:48:29.6108552Z", + "queryTimestamp": "2020-09-14T19:53:33.6418005Z", "fileCount": 1, "fileSize": 189698 }, @@ -206,7 +221,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:17.5070962Z", "lastWriteTimeUtc": "2020-03-03T20:57:17.4545071Z", - "queryTimestamp": "2020-09-12T21:48:29.6118523Z", + "queryTimestamp": "2020-09-14T19:53:33.6418005Z", "fileCount": 1, "fileSize": 196348 }, @@ -221,7 +236,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:17.4841571Z", "lastWriteTimeUtc": "2020-01-31T19:34:15.7671549Z", - "queryTimestamp": "2020-09-12T21:48:29.6118523Z", + "queryTimestamp": "2020-09-14T19:53:33.6423183Z", "fileCount": 1, "fileSize": 57609 }, @@ -236,7 +251,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.0454393Z", "lastWriteTimeUtc": "2020-09-06T17:59:02.3283201Z", - "queryTimestamp": "2020-09-12T21:48:29.6128493Z", + "queryTimestamp": "2020-09-14T19:53:33.6428377Z", "fileCount": 1, "fileSize": 26458748 }, @@ -251,7 +266,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:54.9828461Z", "lastWriteTimeUtc": "2020-08-16T20:18:42.6206731Z", - "queryTimestamp": "2020-09-12T21:48:29.6128493Z", + "queryTimestamp": "2020-09-14T19:53:33.6428377Z", "fileCount": 1, "fileSize": 42634 }, @@ -266,7 +281,7 @@ "status": 1, "timestamp": "2020-07-05T19:54:50.9498552Z", "lastWriteTimeUtc": "2020-07-05T19:32:53.9717169Z", - "queryTimestamp": "2020-09-12T21:48:29.6128493Z", + "queryTimestamp": "2020-09-14T19:53:33.6448194Z", "fileCount": 1, "fileSize": 817776 }, @@ -281,7 +296,7 @@ "status": 1, "timestamp": "2020-05-02T10:38:45.4245225Z", "lastWriteTimeUtc": "2020-04-29T19:01:33.2444299Z", - "queryTimestamp": "2020-09-12T21:48:29.6138474Z", + "queryTimestamp": "2020-09-14T19:53:33.6448194Z", "fileCount": 1, "fileSize": 826536 }, @@ -296,7 +311,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.8975619Z", "lastWriteTimeUtc": "2020-07-15T19:30:43.1964912Z", - "queryTimestamp": "2020-09-12T21:48:29.6138474Z", + "queryTimestamp": "2020-09-14T19:53:33.6458167Z", "fileCount": 1, "fileSize": 1511137 }, @@ -311,7 +326,7 @@ "status": 1, "timestamp": "2020-07-26T18:51:05.1327941Z", "lastWriteTimeUtc": "2020-07-25T20:26:23.2261513Z", - "queryTimestamp": "2020-09-12T21:48:29.6138474Z", + "queryTimestamp": "2020-09-14T19:53:33.6458167Z", "fileCount": 1, "fileSize": 66033 }, @@ -326,7 +341,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:54.3714812Z", "lastWriteTimeUtc": "2020-08-17T18:51:18.0376495Z", - "queryTimestamp": "2020-09-12T21:48:29.6148447Z", + "queryTimestamp": "2020-09-14T19:53:33.646816Z", "fileCount": 1, "fileSize": 485767 }, @@ -341,7 +356,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.4150175Z", "lastWriteTimeUtc": "2020-02-26T20:07:00.0026792Z", - "queryTimestamp": "2020-09-12T21:48:29.6148447Z", + "queryTimestamp": "2020-09-14T19:53:33.646816Z", "fileCount": 1, "fileSize": 14670 }, @@ -356,7 +371,7 @@ "status": 1, "timestamp": "2020-06-22T20:23:41.9027958Z", "lastWriteTimeUtc": "2020-06-22T20:07:42.5965657Z", - "queryTimestamp": "2020-09-12T21:48:29.6158421Z", + "queryTimestamp": "2020-09-14T19:53:33.6478114Z", "fileCount": 1, "fileSize": 195969 }, @@ -371,7 +386,7 @@ "status": 1, "timestamp": "2020-08-23T21:25:47.4782166Z", "lastWriteTimeUtc": "2020-08-23T18:25:37.8900889Z", - "queryTimestamp": "2020-09-12T21:48:29.6158421Z", + "queryTimestamp": "2020-09-14T19:53:33.6478114Z", "fileCount": 1, "fileSize": 704470 }, @@ -386,7 +401,7 @@ "status": 1, "timestamp": "2020-07-12T21:58:57.561717Z", "lastWriteTimeUtc": "2020-07-12T21:56:12.8037897Z", - "queryTimestamp": "2020-09-12T21:48:29.6158421Z", + "queryTimestamp": "2020-09-14T19:53:33.6478114Z", "fileCount": 1, "fileSize": 183819 }, @@ -401,7 +416,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:26.0104683Z", "lastWriteTimeUtc": "2020-09-11T18:22:00.784207Z", - "queryTimestamp": "2020-09-12T21:48:29.616839Z", + "queryTimestamp": "2020-09-14T19:53:33.6488088Z", "fileCount": 1, "fileSize": 524658 }, @@ -416,7 +431,7 @@ "status": 1, "timestamp": "2020-06-16T19:13:01.439265Z", "lastWriteTimeUtc": "2020-06-14T19:06:25.1052708Z", - "queryTimestamp": "2020-09-12T21:48:29.616839Z", + "queryTimestamp": "2020-09-14T19:53:33.6488088Z", "fileCount": 1, "fileSize": 4328267 }, @@ -431,7 +446,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.7643329Z", "lastWriteTimeUtc": "2020-08-28T17:41:25.3333516Z", - "queryTimestamp": "2020-09-12T21:48:29.616839Z", + "queryTimestamp": "2020-09-14T19:53:33.6498068Z", "fileCount": 1, "fileSize": 504006 }, @@ -446,7 +461,7 @@ "status": 1, "timestamp": "2020-05-02T10:38:45.5372247Z", "lastWriteTimeUtc": "2020-04-29T20:09:58.255615Z", - "queryTimestamp": "2020-09-12T21:48:29.6178364Z", + "queryTimestamp": "2020-09-14T19:53:33.6498068Z", "fileCount": 1, "fileSize": 109134 }, @@ -461,7 +476,7 @@ "status": 1, "timestamp": "2020-07-03T20:47:54.4659426Z", "lastWriteTimeUtc": "2020-07-03T17:44:15.3994615Z", - "queryTimestamp": "2020-09-12T21:48:29.6178364Z", + "queryTimestamp": "2020-09-14T19:53:33.6498068Z", "fileCount": 1, "fileSize": 508500 }, @@ -476,7 +491,7 @@ "status": 1, "timestamp": "2020-08-03T19:57:20.969054Z", "lastWriteTimeUtc": "2020-08-03T18:58:32.3187295Z", - "queryTimestamp": "2020-09-12T21:48:29.6178364Z", + "queryTimestamp": "2020-09-14T19:53:33.6508074Z", "fileCount": 1, "fileSize": 2155223 }, @@ -491,7 +506,7 @@ "status": 1, "timestamp": "2020-07-29T20:03:06.6623821Z", "lastWriteTimeUtc": "2020-07-28T20:40:39.6268682Z", - "queryTimestamp": "2020-09-12T21:48:29.6188337Z", + "queryTimestamp": "2020-09-14T19:53:33.6508074Z", "fileCount": 1, "fileSize": 1621864 }, @@ -506,7 +521,7 @@ "status": 1, "timestamp": "2020-07-28T19:15:34.2330354Z", "lastWriteTimeUtc": "2020-05-14T19:53:22.5577987Z", - "queryTimestamp": "2020-09-12T21:48:29.6188337Z", + "queryTimestamp": "2020-09-14T19:53:33.6518004Z", "fileCount": 1, "fileSize": 276400 }, @@ -521,7 +536,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.2368994Z", "lastWriteTimeUtc": "2020-03-16T20:39:09.7979594Z", - "queryTimestamp": "2020-09-12T21:48:29.6188337Z", + "queryTimestamp": "2020-09-14T19:53:33.6518004Z", "fileCount": 1, "fileSize": 43007 }, @@ -536,7 +551,7 @@ "status": 1, "timestamp": "2020-05-30T20:18:09.8293985Z", "lastWriteTimeUtc": "2020-05-29T17:49:45.0255325Z", - "queryTimestamp": "2020-09-12T21:48:29.6208285Z", + "queryTimestamp": "2020-09-14T19:53:33.6523202Z", "fileCount": 1, "fileSize": 13333 }, @@ -593,7 +608,7 @@ "status": 1, "timestamp": "2020-04-19T20:24:34.4505908Z", "lastWriteTimeUtc": "2020-04-19T18:30:48.7805931Z", - "queryTimestamp": "2020-09-12T21:48:29.6208285Z", + "queryTimestamp": "2020-09-14T19:53:33.6528372Z", "fileCount": 4, "fileSize": 0 }, @@ -608,7 +623,7 @@ "status": 1, "timestamp": "2020-07-28T18:27:02.8015332Z", "lastWriteTimeUtc": "2020-07-28T15:08:05.7336418Z", - "queryTimestamp": "2020-09-12T21:48:29.6218256Z", + "queryTimestamp": "2020-09-14T19:53:33.6528372Z", "fileCount": 1, "fileSize": 214939 }, @@ -623,7 +638,7 @@ "status": 1, "timestamp": "2020-04-24T20:11:46.9516104Z", "lastWriteTimeUtc": "2020-04-23T19:27:28.1507491Z", - "queryTimestamp": "2020-09-12T21:48:29.6218256Z", + "queryTimestamp": "2020-09-14T19:53:33.6528372Z", "fileCount": 1, "fileSize": 351021 }, @@ -638,7 +653,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.6137419Z", "lastWriteTimeUtc": "2020-03-19T12:11:48.7971619Z", - "queryTimestamp": "2020-09-12T21:48:29.6218256Z", + "queryTimestamp": "2020-09-14T19:53:33.6538241Z", "fileCount": 1, "fileSize": 7221 }, @@ -653,7 +668,7 @@ "status": 1, "timestamp": "2020-06-28T20:55:01.1844582Z", "lastWriteTimeUtc": "2020-06-28T18:28:07.1224138Z", - "queryTimestamp": "2020-09-12T21:48:29.6228232Z", + "queryTimestamp": "2020-09-14T19:53:33.6538241Z", "fileCount": 1, "fileSize": 10087 }, @@ -668,7 +683,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.2040192Z", "lastWriteTimeUtc": "2020-08-26T18:55:54.4262479Z", - "queryTimestamp": "2020-09-12T21:48:29.6228232Z", + "queryTimestamp": "2020-09-14T19:53:33.6538241Z", "fileCount": 1, "fileSize": 283478 }, @@ -683,7 +698,7 @@ "status": 1, "timestamp": "2020-07-05T19:54:51.1322734Z", "lastWriteTimeUtc": "2020-07-05T19:32:41.2579103Z", - "queryTimestamp": "2020-09-12T21:48:29.6228232Z", + "queryTimestamp": "2020-09-14T19:53:33.65582Z", "fileCount": 1, "fileSize": 870587 }, @@ -698,7 +713,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.6966514Z", "lastWriteTimeUtc": "2020-09-11T17:30:53.7321829Z", - "queryTimestamp": "2020-09-12T21:48:29.6238205Z", + "queryTimestamp": "2020-09-14T19:53:33.65582Z", "fileCount": 1, "fileSize": 934838 }, @@ -713,10 +728,25 @@ "status": 1, "timestamp": "2020-04-09T18:58:10.694809Z", "lastWriteTimeUtc": "2020-04-07T18:05:54.7065672Z", - "queryTimestamp": "2020-09-12T21:48:29.6238205Z", + "queryTimestamp": "2020-09-14T19:53:33.6568172Z", "fileCount": 1, "fileSize": 7708 }, + { + "folderName": "minecolonies-0.13.257-ALPHA-universal.jar", + "fingerprint": 1121726036, + "fileDateHash": 3990738474, + "sectionID": 8, + "individualFingerprints": [ + 1121726036 + ], + "status": 1, + "timestamp": "2020-09-14T19:53:32.2467917Z", + "lastWriteTimeUtc": "2020-09-14T19:07:18.2589029Z", + "queryTimestamp": "2020-09-14T19:53:33.6568172Z", + "fileCount": 1, + "fileSize": 32707174 + }, { "folderName": "ImmersiveEngineering-1.15.2-4.0.0-117.jar", "fingerprint": 1505015837, @@ -728,7 +758,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.3439453Z", "lastWriteTimeUtc": "2020-09-01T20:21:47.6293151Z", - "queryTimestamp": "2020-09-12T21:48:29.6248181Z", + "queryTimestamp": "2020-09-14T19:53:33.6578149Z", "fileCount": 1, "fileSize": 8757351 }, @@ -743,7 +773,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.2302394Z", "lastWriteTimeUtc": "2020-02-02T19:16:54.7099899Z", - "queryTimestamp": "2020-09-12T21:48:29.6248181Z", + "queryTimestamp": "2020-09-14T19:53:33.6578149Z", "fileCount": 1, "fileSize": 60755 }, @@ -758,7 +788,7 @@ "status": 1, "timestamp": "2020-05-02T10:38:45.5850957Z", "lastWriteTimeUtc": "2020-04-29T19:04:35.0450067Z", - "queryTimestamp": "2020-09-12T21:48:29.6248181Z", + "queryTimestamp": "2020-09-14T19:53:33.6578149Z", "fileCount": 1, "fileSize": 45632 }, @@ -773,7 +803,7 @@ "status": 1, "timestamp": "2020-08-24T18:09:44.7805408Z", "lastWriteTimeUtc": "2020-08-23T21:36:56.1377717Z", - "queryTimestamp": "2020-09-12T21:48:29.6258151Z", + "queryTimestamp": "2020-09-14T19:53:33.6588123Z", "fileCount": 1, "fileSize": 5782 }, @@ -788,7 +818,7 @@ "status": 1, "timestamp": "2020-09-12T21:48:28.5943163Z", "lastWriteTimeUtc": "2020-09-12T20:15:52.4834948Z", - "queryTimestamp": "2020-09-12T21:48:29.6258151Z", + "queryTimestamp": "2020-09-14T19:53:33.6588123Z", "fileCount": 1, "fileSize": 90313 }, @@ -803,7 +833,7 @@ "status": 1, "timestamp": "2020-07-12T20:52:14.3239361Z", "lastWriteTimeUtc": "2020-07-12T20:50:09.6306371Z", - "queryTimestamp": "2020-09-12T21:48:29.6258151Z", + "queryTimestamp": "2020-09-14T19:53:33.6588123Z", "fileCount": 1, "fileSize": 33854 }, @@ -818,7 +848,7 @@ "status": 1, "timestamp": "2020-07-28T18:27:02.6120401Z", "lastWriteTimeUtc": "2020-07-28T15:07:02.4242061Z", - "queryTimestamp": "2020-09-12T21:48:29.6268125Z", + "queryTimestamp": "2020-09-14T19:53:33.6598093Z", "fileCount": 1, "fileSize": 526688 }, @@ -833,7 +863,7 @@ "status": 1, "timestamp": "2020-04-27T17:42:51.3063186Z", "lastWriteTimeUtc": "2020-04-27T15:33:51.4648882Z", - "queryTimestamp": "2020-09-12T21:48:29.6268125Z", + "queryTimestamp": "2020-09-14T19:53:33.6598093Z", "fileCount": 1, "fileSize": 22435 }, @@ -848,7 +878,7 @@ "status": 1, "timestamp": "2020-05-12T19:50:08.629166Z", "lastWriteTimeUtc": "2020-05-06T18:04:47.4588772Z", - "queryTimestamp": "2020-09-12T21:48:29.6278101Z", + "queryTimestamp": "2020-09-14T19:53:33.6608061Z", "fileCount": 1, "fileSize": 6001629 }, @@ -863,7 +893,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.5719219Z", "lastWriteTimeUtc": "2020-07-15T19:31:45.1436599Z", - "queryTimestamp": "2020-09-12T21:48:29.6278101Z", + "queryTimestamp": "2020-09-14T19:53:33.6608061Z", "fileCount": 1, "fileSize": 172873 }, @@ -878,7 +908,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.0175737Z", "lastWriteTimeUtc": "2020-02-12T19:28:52.7868916Z", - "queryTimestamp": "2020-09-12T21:48:29.6278101Z", + "queryTimestamp": "2020-09-14T19:53:33.6608061Z", "fileCount": 1, "fileSize": 26924 }, @@ -893,7 +923,7 @@ "status": 1, "timestamp": "2020-06-23T21:12:17.4906112Z", "lastWriteTimeUtc": "2020-06-23T20:58:48.7541904Z", - "queryTimestamp": "2020-09-12T21:48:29.6288073Z", + "queryTimestamp": "2020-09-14T19:53:33.6618032Z", "fileCount": 1, "fileSize": 110257 }, @@ -908,7 +938,7 @@ "status": 1, "timestamp": "2020-07-05T20:34:50.1951183Z", "lastWriteTimeUtc": "2020-07-05T19:58:59.8160713Z", - "queryTimestamp": "2020-09-12T21:48:29.6288073Z", + "queryTimestamp": "2020-09-14T19:53:33.6623242Z", "fileCount": 1, "fileSize": 136653 }, @@ -923,7 +953,7 @@ "status": 1, "timestamp": "2020-04-23T17:56:21.2833436Z", "lastWriteTimeUtc": "2020-04-21T18:02:46.0672783Z", - "queryTimestamp": "2020-09-12T21:48:29.6288073Z", + "queryTimestamp": "2020-09-14T19:53:33.6628502Z", "fileCount": 1, "fileSize": 106396 }, @@ -938,7 +968,7 @@ "status": 1, "timestamp": "2020-07-28T19:15:34.2330354Z", "lastWriteTimeUtc": "2020-04-17T20:51:06.3113272Z", - "queryTimestamp": "2020-09-12T21:48:29.6303205Z", + "queryTimestamp": "2020-09-14T19:53:33.6628502Z", "fileCount": 1, "fileSize": 43869 }, @@ -953,7 +983,7 @@ "status": 1, "timestamp": "2020-05-12T19:50:08.6261743Z", "lastWriteTimeUtc": "2020-05-11T21:42:04.9082Z", - "queryTimestamp": "2020-09-12T21:48:29.6303205Z", + "queryTimestamp": "2020-09-14T19:53:33.6628502Z", "fileCount": 1, "fileSize": 28864 }, @@ -968,7 +998,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.5652884Z", "lastWriteTimeUtc": "2020-08-16T20:19:08.2951518Z", - "queryTimestamp": "2020-09-12T21:48:29.6313109Z", + "queryTimestamp": "2020-09-14T19:53:33.6638321Z", "fileCount": 1, "fileSize": 1064152 }, @@ -983,7 +1013,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:28.1367478Z", "lastWriteTimeUtc": "2020-06-28T18:11:39.1669761Z", - "queryTimestamp": "2020-09-12T21:48:29.6313109Z", + "queryTimestamp": "2020-09-14T19:53:33.6638321Z", "fileCount": 1, "fileSize": 194641 }, @@ -998,7 +1028,7 @@ "status": 1, "timestamp": "2020-07-28T18:27:02.8055229Z", "lastWriteTimeUtc": "2020-07-28T15:29:37.8167601Z", - "queryTimestamp": "2020-09-12T21:48:29.6313109Z", + "queryTimestamp": "2020-09-14T19:53:33.66483Z", "fileCount": 1, "fileSize": 15055 }, @@ -1013,10 +1043,25 @@ "status": 1, "timestamp": "2020-06-20T18:39:30.0686118Z", "lastWriteTimeUtc": "2020-06-19T20:07:01.6855381Z", - "queryTimestamp": "2020-09-12T21:48:29.6323071Z", + "queryTimestamp": "2020-09-14T19:53:33.66483Z", "fileCount": 1, "fileSize": 285238 }, + { + "folderName": "Transport-1.15.2-2.4.1.jar", + "fingerprint": 2485146229, + "fileDateHash": 2533781752, + "sectionID": 8, + "individualFingerprints": [ + 2485146229 + ], + "status": 1, + "timestamp": "2020-09-14T19:53:32.4268251Z", + "lastWriteTimeUtc": "2020-09-14T19:07:43.213039Z", + "queryTimestamp": "2020-09-14T19:53:33.6668228Z", + "fileCount": 1, + "fileSize": 402492 + }, { "folderName": "angelring-1.15.2-1.2.0.jar", "fingerprint": 3946421855, @@ -1028,7 +1073,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:14.9469034Z", "lastWriteTimeUtc": "2020-02-15T19:18:57.7540181Z", - "queryTimestamp": "2020-09-12T21:48:29.6323071Z", + "queryTimestamp": "2020-09-14T19:53:33.6668228Z", "fileCount": 1, "fileSize": 19175 }, @@ -1043,7 +1088,7 @@ "status": 1, "timestamp": "2020-07-29T20:03:06.9326525Z", "lastWriteTimeUtc": "2020-07-29T18:14:55.594293Z", - "queryTimestamp": "2020-09-12T21:48:29.6333042Z", + "queryTimestamp": "2020-09-14T19:53:33.6668228Z", "fileCount": 1, "fileSize": 94030 }, @@ -1058,7 +1103,7 @@ "status": 1, "timestamp": "2020-04-24T20:11:47.0473318Z", "lastWriteTimeUtc": "2020-04-24T19:10:53.1510104Z", - "queryTimestamp": "2020-09-12T21:48:29.6333042Z", + "queryTimestamp": "2020-09-14T19:53:33.667821Z", "fileCount": 1, "fileSize": 1061758 }, @@ -1073,7 +1118,7 @@ "status": 1, "timestamp": "2020-08-01T19:42:29.9230787Z", "lastWriteTimeUtc": "2020-08-01T19:17:16.0131545Z", - "queryTimestamp": "2020-09-12T21:48:29.6333042Z", + "queryTimestamp": "2020-09-14T19:53:33.667821Z", "fileCount": 1, "fileSize": 136840 }, @@ -1088,7 +1133,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:54.6078488Z", "lastWriteTimeUtc": "2020-08-08T19:12:30.851003Z", - "queryTimestamp": "2020-09-12T21:48:29.6343012Z", + "queryTimestamp": "2020-09-14T19:53:33.6688185Z", "fileCount": 1, "fileSize": 213616 }, @@ -1103,7 +1148,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.3339071Z", "lastWriteTimeUtc": "2020-08-09T18:16:07.0878305Z", - "queryTimestamp": "2020-09-12T21:48:29.6343012Z", + "queryTimestamp": "2020-09-14T19:53:33.6688185Z", "fileCount": 1, "fileSize": 68744 }, @@ -1118,7 +1163,7 @@ "status": 1, "timestamp": "2020-06-23T21:12:17.4866225Z", "lastWriteTimeUtc": "2020-06-23T20:58:47.318197Z", - "queryTimestamp": "2020-09-12T21:48:29.6352989Z", + "queryTimestamp": "2020-09-14T19:53:33.6688185Z", "fileCount": 1, "fileSize": 656263 }, @@ -1133,7 +1178,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.9185055Z", "lastWriteTimeUtc": "2020-07-15T19:39:04.8376609Z", - "queryTimestamp": "2020-09-12T21:48:29.6352989Z", + "queryTimestamp": "2020-09-14T19:53:33.6698155Z", "fileCount": 1, "fileSize": 28802 }, @@ -1148,7 +1193,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.3060467Z", "lastWriteTimeUtc": "2020-09-06T17:59:13.3227305Z", - "queryTimestamp": "2020-09-12T21:48:29.6352989Z", + "queryTimestamp": "2020-09-14T19:53:33.6698155Z", "fileCount": 1, "fileSize": 1266175 }, @@ -1163,7 +1208,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:26.0503597Z", "lastWriteTimeUtc": "2020-09-11T18:22:11.3150815Z", - "queryTimestamp": "2020-09-12T21:48:29.6362964Z", + "queryTimestamp": "2020-09-14T19:53:33.6708129Z", "fileCount": 1, "fileSize": 180673 }, @@ -1178,7 +1223,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.3352305Z", "lastWriteTimeUtc": "2020-02-02T19:02:43.2274296Z", - "queryTimestamp": "2020-09-12T21:48:29.6362964Z", + "queryTimestamp": "2020-09-14T19:53:33.6708129Z", "fileCount": 1, "fileSize": 29290 }, @@ -1193,7 +1238,7 @@ "status": 1, "timestamp": "2020-05-30T20:18:09.1624265Z", "lastWriteTimeUtc": "2020-05-29T17:49:00.200281Z", - "queryTimestamp": "2020-09-12T21:48:29.6362964Z", + "queryTimestamp": "2020-09-14T19:53:33.6708129Z", "fileCount": 1, "fileSize": 26302 }, @@ -1208,7 +1253,7 @@ "status": 1, "timestamp": "2020-08-23T21:25:47.5011552Z", "lastWriteTimeUtc": "2020-08-23T18:32:10.7543241Z", - "queryTimestamp": "2020-09-12T21:48:29.6372934Z", + "queryTimestamp": "2020-09-14T19:53:33.6718108Z", "fileCount": 1, "fileSize": 181089 }, @@ -1223,7 +1268,7 @@ "status": 1, "timestamp": "2020-07-05T19:54:50.9128542Z", "lastWriteTimeUtc": "2020-07-05T19:32:34.8014186Z", - "queryTimestamp": "2020-09-12T21:48:29.6372934Z", + "queryTimestamp": "2020-09-14T19:53:33.6723271Z", "fileCount": 1, "fileSize": 31045 }, @@ -1238,7 +1283,7 @@ "status": 1, "timestamp": "2020-07-28T18:27:02.6190215Z", "lastWriteTimeUtc": "2020-07-28T15:30:06.1793819Z", - "queryTimestamp": "2020-09-12T21:48:29.6382924Z", + "queryTimestamp": "2020-09-14T19:53:33.6728429Z", "fileCount": 1, "fileSize": 221036 }, @@ -1253,25 +1298,10 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.2132847Z", "lastWriteTimeUtc": "2020-01-31T20:43:54.6728296Z", - "queryTimestamp": "2020-09-12T21:48:29.6382924Z", + "queryTimestamp": "2020-09-14T19:53:33.6728429Z", "fileCount": 1, "fileSize": 52700 }, - { - "folderName": "minecolonies-0.13.251-ALPHA-universal.jar", - "fingerprint": 1768248342, - "fileDateHash": 2064012849, - "sectionID": 8, - "individualFingerprints": [ - 1768248342 - ], - "status": 1, - "timestamp": "2020-09-13T20:07:00.5390998Z", - "lastWriteTimeUtc": "2020-09-13T18:14:18.5106135Z", - "queryTimestamp": "2020-09-13T20:07:03.2556072Z", - "fileCount": 1, - "fileSize": 32673373 - }, { "folderName": "mcw-bridges-1.0.4fix-mc1.15.2.jar", "fingerprint": 1812007431, @@ -1283,7 +1313,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:17.0961952Z", "lastWriteTimeUtc": "2020-03-04T20:14:32.90897Z", - "queryTimestamp": "2020-09-12T21:48:29.6382924Z", + "queryTimestamp": "2020-09-14T19:53:33.6728429Z", "fileCount": 1, "fileSize": 148043 }, @@ -1396,7 +1426,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:26.1062104Z", "lastWriteTimeUtc": "2020-09-08T19:07:41.8406272Z", - "queryTimestamp": "2020-09-12T21:48:29.6392886Z", + "queryTimestamp": "2020-09-14T19:53:33.6738312Z", "fileCount": 19, "fileSize": 0 }, @@ -1411,7 +1441,7 @@ "status": 1, "timestamp": "2020-07-28T15:05:53.3330682Z", "lastWriteTimeUtc": "2020-07-27T18:00:48.2268748Z", - "queryTimestamp": "2020-09-12T21:48:29.6402855Z", + "queryTimestamp": "2020-09-14T19:53:33.6738312Z", "fileCount": 1, "fileSize": 12014 }, @@ -1426,7 +1456,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.8043627Z", "lastWriteTimeUtc": "2020-09-07T18:32:45.6635508Z", - "queryTimestamp": "2020-09-12T21:48:29.6402855Z", + "queryTimestamp": "2020-09-14T19:53:33.6738312Z", "fileCount": 1, "fileSize": 436444 }, @@ -1441,7 +1471,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.2189261Z", "lastWriteTimeUtc": "2020-03-28T07:47:21.0065198Z", - "queryTimestamp": "2020-09-12T21:48:29.6412838Z", + "queryTimestamp": "2020-09-14T19:53:33.674829Z", "fileCount": 1, "fileSize": 457642 }, @@ -1456,7 +1486,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.8610743Z", "lastWriteTimeUtc": "2020-09-03T10:46:32.9588313Z", - "queryTimestamp": "2020-09-12T21:48:29.6412838Z", + "queryTimestamp": "2020-09-14T19:53:33.674829Z", "fileCount": 1, "fileSize": 100968 }, @@ -1471,7 +1501,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.7553617Z", "lastWriteTimeUtc": "2020-08-28T17:41:23.7575429Z", - "queryTimestamp": "2020-09-12T21:48:29.6412838Z", + "queryTimestamp": "2020-09-14T19:53:33.6758263Z", "fileCount": 1, "fileSize": 380255 }, @@ -1486,7 +1516,7 @@ "status": 1, "timestamp": "2020-07-12T21:58:57.5607209Z", "lastWriteTimeUtc": "2020-07-12T21:56:47.1201037Z", - "queryTimestamp": "2020-09-12T21:48:29.642282Z", + "queryTimestamp": "2020-09-14T19:53:33.6768239Z", "fileCount": 1, "fileSize": 44964 }, @@ -1501,7 +1531,7 @@ "status": 1, "timestamp": "2020-04-11T21:04:09.9121449Z", "lastWriteTimeUtc": "2020-04-11T20:11:23.9892716Z", - "queryTimestamp": "2020-09-12T21:48:29.642282Z", + "queryTimestamp": "2020-09-14T19:53:33.6768239Z", "fileCount": 1, "fileSize": 64160 }, @@ -1516,7 +1546,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.3329742Z", "lastWriteTimeUtc": "2020-08-26T18:54:35.981272Z", - "queryTimestamp": "2020-09-12T21:48:29.642282Z", + "queryTimestamp": "2020-09-14T19:53:33.6778202Z", "fileCount": 1, "fileSize": 88411 }, @@ -1570,7 +1600,7 @@ "status": 1, "timestamp": "2020-04-25T19:40:39.1759545Z", "lastWriteTimeUtc": "2020-04-25T19:28:23.8863966Z", - "queryTimestamp": "2020-09-12T21:48:29.6432787Z", + "queryTimestamp": "2020-09-14T19:53:33.6778202Z", "fileCount": 4, "fileSize": 0 }, @@ -1585,7 +1615,7 @@ "status": 1, "timestamp": "2020-06-10T19:27:04.5544506Z", "lastWriteTimeUtc": "2020-06-10T18:47:34.8287883Z", - "queryTimestamp": "2020-09-12T21:48:29.6432787Z", + "queryTimestamp": "2020-09-14T19:53:33.6788173Z", "fileCount": 1, "fileSize": 378820 }, @@ -1600,7 +1630,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.7174579Z", "lastWriteTimeUtc": "2020-09-03T10:45:35.2851837Z", - "queryTimestamp": "2020-09-12T21:48:29.6442746Z", + "queryTimestamp": "2020-09-14T19:53:33.6788173Z", "fileCount": 1, "fileSize": 1470987 }, @@ -1615,7 +1645,7 @@ "status": 1, "timestamp": "2020-05-30T20:18:09.0896272Z", "lastWriteTimeUtc": "2020-05-25T16:29:20.8580173Z", - "queryTimestamp": "2020-09-12T21:48:29.6442746Z", + "queryTimestamp": "2020-09-14T19:53:33.679815Z", "fileCount": 1, "fileSize": 178961 }, @@ -1630,7 +1660,7 @@ "status": 1, "timestamp": "2020-06-30T18:26:43.1084057Z", "lastWriteTimeUtc": "2020-06-30T18:07:45.2831258Z", - "queryTimestamp": "2020-09-12T21:48:29.6442746Z", + "queryTimestamp": "2020-09-14T19:53:33.679815Z", "fileCount": 1, "fileSize": 10068 }, @@ -1645,7 +1675,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.7694564Z", "lastWriteTimeUtc": "2020-09-07T18:32:50.8068889Z", - "queryTimestamp": "2020-09-12T21:48:29.6452719Z", + "queryTimestamp": "2020-09-14T19:53:33.679815Z", "fileCount": 1, "fileSize": 305334 }, @@ -1660,7 +1690,7 @@ "status": 1, "timestamp": "2020-08-22T20:48:49.9667653Z", "lastWriteTimeUtc": "2020-08-22T18:26:36.1682487Z", - "queryTimestamp": "2020-09-12T21:48:29.6452719Z", + "queryTimestamp": "2020-09-14T19:53:33.6808125Z", "fileCount": 1, "fileSize": 931074 }, @@ -1675,7 +1705,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.7451345Z", "lastWriteTimeUtc": "2020-01-31T20:26:11.1820655Z", - "queryTimestamp": "2020-09-12T21:48:29.6452719Z", + "queryTimestamp": "2020-09-14T19:53:33.6808125Z", "fileCount": 1, "fileSize": 49879 }, @@ -1690,7 +1720,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.6787016Z", "lastWriteTimeUtc": "2020-09-09T18:42:13.4451256Z", - "queryTimestamp": "2020-09-12T21:48:29.646269Z", + "queryTimestamp": "2020-09-14T19:53:33.6818105Z", "fileCount": 1, "fileSize": 179846 }, @@ -1705,7 +1735,7 @@ "status": 1, "timestamp": "2020-05-14T19:49:33.4675234Z", "lastWriteTimeUtc": "2020-05-14T19:13:51.3778585Z", - "queryTimestamp": "2020-09-12T21:48:29.646269Z", + "queryTimestamp": "2020-09-14T19:53:33.6823323Z", "fileCount": 1, "fileSize": 98377 }, @@ -1730,7 +1760,7 @@ "status": 1, "timestamp": "2020-08-22T20:48:50.4141071Z", "lastWriteTimeUtc": "2020-08-19T20:34:45.0948029Z", - "queryTimestamp": "2020-09-12T21:48:29.646269Z", + "queryTimestamp": "2020-09-14T19:53:33.6823323Z", "fileCount": 1, "fileSize": 0 }, @@ -1745,7 +1775,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.7485124Z", "lastWriteTimeUtc": "2020-09-09T18:42:48.4502681Z", - "queryTimestamp": "2020-09-12T21:48:29.6472669Z", + "queryTimestamp": "2020-09-14T19:53:33.6828504Z", "fileCount": 1, "fileSize": 118826 }, @@ -1760,7 +1790,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:26.0802795Z", "lastWriteTimeUtc": "2020-09-11T18:22:25.0417759Z", - "queryTimestamp": "2020-09-12T21:48:29.6472669Z", + "queryTimestamp": "2020-09-14T19:53:33.6828504Z", "fileCount": 1, "fileSize": 88627 }, @@ -1775,7 +1805,7 @@ "status": 1, "timestamp": "2020-06-30T18:26:43.1084057Z", "lastWriteTimeUtc": "2020-06-30T18:08:07.6781465Z", - "queryTimestamp": "2020-09-12T21:48:29.6482641Z", + "queryTimestamp": "2020-09-14T19:53:33.6838368Z", "fileCount": 1, "fileSize": 20451 }, @@ -1790,7 +1820,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:15.6635198Z", "lastWriteTimeUtc": "2020-02-12T19:28:55.5965332Z", - "queryTimestamp": "2020-09-12T21:48:29.6482641Z", + "queryTimestamp": "2020-09-14T19:53:33.6838368Z", "fileCount": 1, "fileSize": 45303 }, @@ -1805,7 +1835,7 @@ "status": 1, "timestamp": "2020-09-12T21:48:28.6082786Z", "lastWriteTimeUtc": "2020-09-12T07:46:36.3056326Z", - "queryTimestamp": "2020-09-12T21:48:29.6482641Z", + "queryTimestamp": "2020-09-14T19:53:33.6838368Z", "fileCount": 1, "fileSize": 642595 }, @@ -1820,7 +1850,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.6506378Z", "lastWriteTimeUtc": "2020-09-03T10:45:18.9094288Z", - "queryTimestamp": "2020-09-12T21:48:29.6502589Z", + "queryTimestamp": "2020-09-14T19:53:33.6848356Z", "fileCount": 1, "fileSize": 1270968 }, @@ -1835,7 +1865,7 @@ "status": 1, "timestamp": "2020-09-12T21:48:28.5943163Z", "lastWriteTimeUtc": "2020-09-12T07:47:01.8396103Z", - "queryTimestamp": "2020-09-12T21:48:29.6492617Z", + "queryTimestamp": "2020-09-14T19:53:33.6848356Z", "fileCount": 1, "fileSize": 2585554 }, @@ -1850,7 +1880,7 @@ "status": 1, "timestamp": "2020-06-16T19:13:01.6636638Z", "lastWriteTimeUtc": "2020-06-13T18:29:31.0969234Z", - "queryTimestamp": "2020-09-12T21:48:29.6502589Z", + "queryTimestamp": "2020-09-14T19:53:33.6858319Z", "fileCount": 1, "fileSize": 9165 }, @@ -1865,7 +1895,7 @@ "status": 1, "timestamp": "2020-03-11T21:26:00.3842104Z", "lastWriteTimeUtc": "2020-03-11T21:11:38.7583031Z", - "queryTimestamp": "2020-09-12T21:48:29.6512557Z", + "queryTimestamp": "2020-09-14T19:53:33.6858319Z", "fileCount": 1, "fileSize": 24547 }, @@ -1880,7 +1910,7 @@ "status": 1, "timestamp": "2020-07-05T19:54:50.9548915Z", "lastWriteTimeUtc": "2020-07-05T19:32:56.3530557Z", - "queryTimestamp": "2020-09-12T21:48:29.6512557Z", + "queryTimestamp": "2020-09-14T19:53:33.6858319Z", "fileCount": 1, "fileSize": 222173 }, @@ -1895,7 +1925,7 @@ "status": 1, "timestamp": "2020-04-03T18:13:43.546263Z", "lastWriteTimeUtc": "2020-04-02T19:51:26.5653834Z", - "queryTimestamp": "2020-09-12T21:48:29.6512557Z", + "queryTimestamp": "2020-09-14T19:53:33.6868294Z", "fileCount": 1, "fileSize": 37695 }, @@ -1910,7 +1940,7 @@ "status": 1, "timestamp": "2020-05-22T18:16:52.8671082Z", "lastWriteTimeUtc": "2020-05-21T17:50:02.7774293Z", - "queryTimestamp": "2020-09-12T21:48:29.6522536Z", + "queryTimestamp": "2020-09-14T19:53:33.6878267Z", "fileCount": 1, "fileSize": 184782 }, @@ -1959,209 +1989,20 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.6397672Z", "lastWriteTimeUtc": "2020-03-20T22:16:00.7927455Z", - "queryTimestamp": "2020-09-12T21:48:29.6522536Z", + "queryTimestamp": "2020-09-14T19:53:33.6888237Z", "fileCount": 5, "fileSize": 0 }, { "folderName": "New World (7)", - "fingerprint": 4021910067, - "fileDateHash": 1107359610, + "fingerprint": 0, + "fileDateHash": 1760781238, "sectionID": 10, - "individualFingerprints": [ - 29425876, - 37223040, - 53316332, - 74311726, - 111640440, - 126148247, - 142007128, - 220349740, - 329063891, - 335183932, - 339853837, - 341673820, - 355228473, - 362580002, - 394507179, - 468595940, - 481121806, - 487195717, - 491171262, - 504434598, - 513901282, - 534981943, - 651942457, - 669251714, - 670102193, - 686299532, - 703937574, - 707517314, - 755985951, - 763558043, - 769737479, - 771550371, - 771755212, - 795307596, - 797016327, - 805596350, - 805664012, - 813236312, - 827373859, - 832660347, - 838526540, - 848704481, - 933407659, - 951040492, - 967776894, - 985462111, - 1086721577, - 1121602085, - 1156691497, - 1182732594, - 1240038654, - 1254586642, - 1318921553, - 1320031062, - 1320537910, - 1326081694, - 1349007058, - 1352380737, - 1367033121, - 1379904776, - 1386704976, - 1402897034, - 1470808285, - 1489426999, - 1536635040, - 1539061548, - 1540447798, - 1540447798, - 1540447798, - 1540447798, - 1540447798, - 1540447798, - 1540447798, - 1540447798, - 1549668901, - 1571306931, - 1592320454, - 1620541268, - 1627858539, - 1636142237, - 1663600643, - 1681925683, - 1722379664, - 1722796223, - 1753484768, - 1777645178, - 1783675463, - 1799081239, - 1818468934, - 1830568727, - 1831771499, - 1907340350, - 1926237630, - 1932224260, - 1989808511, - 1996313512, - 2003699970, - 2007477546, - 2025984034, - 2027585755, - 2102737153, - 2125103759, - 2133734328, - 2143571593, - 2144146657, - 2164073840, - 2168141551, - 2195488906, - 2226088383, - 2232013417, - 2249635574, - 2254141809, - 2256029242, - 2287161386, - 2304864311, - 2311145205, - 2315885618, - 2331170389, - 2340210289, - 2363716728, - 2372576555, - 2376233653, - 2381537358, - 2438022517, - 2502419821, - 2506167617, - 2507541955, - 2509696179, - 2525330077, - 2573305100, - 2575327331, - 2653844868, - 2664468614, - 2677386041, - 2702430682, - 2719595336, - 2742343036, - 2833692463, - 2837445219, - 2868986478, - 2887489200, - 2916640397, - 2949915140, - 3009251900, - 3025660433, - 3049160315, - 3058950171, - 3066937515, - 3145946506, - 3205189787, - 3223266851, - 3245569963, - 3287613341, - 3313731426, - 3362769045, - 3418356820, - 3421536975, - 3422139366, - 3451579659, - 3455076224, - 3463341680, - 3475289000, - 3506688999, - 3533626746, - 3533626746, - 3533626746, - 3771282984, - 3771282984, - 3771282984, - 3771282984, - 3771282984, - 3779001161, - 3781391836, - 3820157475, - 3874577451, - 3894804303, - 3961037842, - 4063734114, - 4095122453, - 4095122453, - 4161228871, - 4164027108, - 4179873556, - 4192398683, - 4242074383, - 4245771050, - 4282956055, - 4285641435 - ], - "status": 1, - "timestamp": "2020-09-13T20:07:01.6022571Z", - "lastWriteTimeUtc": "2020-09-13T20:06:59.9602264Z", - "queryTimestamp": "2020-09-13T20:07:03.2695701Z", + "individualFingerprints": null, + "status": 4, + "timestamp": "2020-09-14T19:53:32.4368241Z", + "lastWriteTimeUtc": "2020-09-14T19:48:59.6429736Z", + "queryTimestamp": "0001-01-01T00:00:00", "fileCount": 21, "fileSize": 0 }, @@ -2176,7 +2017,7 @@ "status": 1, "timestamp": "2020-07-26T18:51:05.137818Z", "lastWriteTimeUtc": "2020-07-25T20:26:39.2059421Z", - "queryTimestamp": "2020-09-12T21:48:29.6522536Z", + "queryTimestamp": "2020-09-14T19:53:33.6888237Z", "fileCount": 1, "fileSize": 133859 }, @@ -2191,7 +2032,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.3688138Z", "lastWriteTimeUtc": "2020-08-05T20:53:09.7169604Z", - "queryTimestamp": "2020-09-12T21:48:29.6532505Z", + "queryTimestamp": "2020-09-14T19:53:33.6888237Z", "fileCount": 1, "fileSize": 465175 }, @@ -2206,7 +2047,7 @@ "status": 1, "timestamp": "2020-08-05T18:12:12.1166896Z", "lastWriteTimeUtc": "2020-08-04T19:51:29.781768Z", - "queryTimestamp": "2020-09-12T21:48:29.6532505Z", + "queryTimestamp": "2020-09-14T19:53:33.6898215Z", "fileCount": 1, "fileSize": 2075503 }, @@ -2221,7 +2062,7 @@ "status": 1, "timestamp": "2020-06-16T19:13:01.7693814Z", "lastWriteTimeUtc": "2020-06-15T19:22:53.4035511Z", - "queryTimestamp": "2020-09-12T21:48:29.6542478Z", + "queryTimestamp": "2020-09-14T19:53:33.6898215Z", "fileCount": 1, "fileSize": 546613 }, @@ -2236,7 +2077,7 @@ "status": 1, "timestamp": "2020-07-29T20:03:06.8977467Z", "lastWriteTimeUtc": "2020-07-29T18:14:33.4268681Z", - "queryTimestamp": "2020-09-12T21:48:29.6542478Z", + "queryTimestamp": "2020-09-14T19:53:33.6908184Z", "fileCount": 1, "fileSize": 122714 }, @@ -2251,7 +2092,7 @@ "status": 1, "timestamp": "2020-07-03T20:47:54.4709286Z", "lastWriteTimeUtc": "2020-07-03T17:44:33.3346852Z", - "queryTimestamp": "2020-09-12T21:48:29.6542478Z", + "queryTimestamp": "2020-09-14T19:53:33.6908184Z", "fileCount": 1, "fileSize": 38291 }, @@ -2266,25 +2107,10 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.5679578Z", "lastWriteTimeUtc": "2020-07-15T19:39:51.2081035Z", - "queryTimestamp": "2020-09-12T21:48:29.6552449Z", + "queryTimestamp": "2020-09-14T19:53:33.6908184Z", "fileCount": 1, "fileSize": 29171 }, - { - "folderName": "EmendatusEnigmatica-1.15.2-1.0.6.jar", - "fingerprint": 3328536993, - "fileDateHash": 1302629436, - "sectionID": 8, - "individualFingerprints": [ - 3328536993 - ], - "status": 1, - "timestamp": "2020-09-11T19:35:38.4025215Z", - "lastWriteTimeUtc": "2020-09-11T19:01:02.6858725Z", - "queryTimestamp": "2020-09-12T21:48:29.6552449Z", - "fileCount": 1, - "fileSize": 1889399 - }, { "folderName": ".quark", "fingerprint": 100803977, @@ -2296,7 +2122,7 @@ "status": 1, "timestamp": "2020-06-10T19:27:04.6671907Z", "lastWriteTimeUtc": "2020-06-10T18:54:51.9441942Z", - "queryTimestamp": "2020-09-12T21:48:29.6552449Z", + "queryTimestamp": "2020-09-14T19:53:33.6918156Z", "fileCount": 1, "fileSize": 0 }, @@ -2311,7 +2137,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.1579655Z", "lastWriteTimeUtc": "2020-03-25T20:28:05.8454718Z", - "queryTimestamp": "2020-09-12T21:48:29.6562441Z", + "queryTimestamp": "2020-09-14T19:53:33.6918156Z", "fileCount": 1, "fileSize": 58933 }, @@ -2326,7 +2152,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.736545Z", "lastWriteTimeUtc": "2020-09-11T17:32:00.6628361Z", - "queryTimestamp": "2020-09-12T21:48:29.6562441Z", + "queryTimestamp": "2020-09-14T19:53:33.6923312Z", "fileCount": 1, "fileSize": 803742 }, @@ -2341,7 +2167,7 @@ "status": 1, "timestamp": "2020-04-14T19:45:16.9359843Z", "lastWriteTimeUtc": "2020-04-13T21:00:53.109831Z", - "queryTimestamp": "2020-09-12T21:48:29.6572409Z", + "queryTimestamp": "2020-09-14T19:53:33.6928467Z", "fileCount": 1, "fileSize": 52991 }, @@ -2356,7 +2182,7 @@ "status": 1, "timestamp": "2020-06-16T19:13:01.6995676Z", "lastWriteTimeUtc": "2020-06-15T19:22:41.4055227Z", - "queryTimestamp": "2020-09-12T21:48:29.6572409Z", + "queryTimestamp": "2020-09-14T19:53:33.6928467Z", "fileCount": 1, "fileSize": 5424185 }, @@ -2371,7 +2197,7 @@ "status": 1, "timestamp": "2020-08-22T20:48:50.1043984Z", "lastWriteTimeUtc": "2020-08-22T18:32:27.1396422Z", - "queryTimestamp": "2020-09-12T21:48:29.6572409Z", + "queryTimestamp": "2020-09-14T19:53:33.6928467Z", "fileCount": 1, "fileSize": 36224 }, @@ -2386,7 +2212,7 @@ "status": 1, "timestamp": "2020-04-11T21:04:09.9111483Z", "lastWriteTimeUtc": "2020-04-11T20:11:20.8147829Z", - "queryTimestamp": "2020-09-12T21:48:29.6582374Z", + "queryTimestamp": "2020-09-14T19:53:33.6938352Z", "fileCount": 1, "fileSize": 67000 }, @@ -2401,7 +2227,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.5739152Z", "lastWriteTimeUtc": "2020-07-21T19:55:17.8910255Z", - "queryTimestamp": "2020-09-12T21:48:29.6582374Z", + "queryTimestamp": "2020-09-14T19:53:33.6938352Z", "fileCount": 1, "fileSize": 226380 }, @@ -2416,7 +2242,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.7188776Z", "lastWriteTimeUtc": "2020-08-17T18:51:05.7988979Z", - "queryTimestamp": "2020-09-12T21:48:29.6592346Z", + "queryTimestamp": "2020-09-14T19:53:33.6948321Z", "fileCount": 1, "fileSize": 312477 }, @@ -2431,25 +2257,10 @@ "status": 1, "timestamp": "2020-04-03T18:13:43.5362895Z", "lastWriteTimeUtc": "2020-04-01T18:01:32.0628661Z", - "queryTimestamp": "2020-09-12T21:48:29.6602314Z", + "queryTimestamp": "2020-09-14T19:53:33.6948321Z", "fileCount": 1, "fileSize": 202515 }, - { - "folderName": "Transport-1.15.2-2.4.0.jar", - "fingerprint": 2321826009, - "fileDateHash": 3572800906, - "sectionID": 8, - "individualFingerprints": [ - 2321826009 - ], - "status": 1, - "timestamp": "2020-08-19T20:18:55.779715Z", - "lastWriteTimeUtc": "2020-08-19T20:16:57.7065932Z", - "queryTimestamp": "2020-09-12T21:48:29.6602314Z", - "fileCount": 1, - "fileSize": 399882 - }, { "folderName": "mysticallib-1.15.2-2.0.1.jar", "fingerprint": 232097684, @@ -2461,7 +2272,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.833732Z", "lastWriteTimeUtc": "2020-07-15T19:38:41.6852779Z", - "queryTimestamp": "2020-09-12T21:48:29.6602314Z", + "queryTimestamp": "2020-09-14T19:53:33.6948321Z", "fileCount": 1, "fileSize": 133368 }, @@ -2476,7 +2287,7 @@ "status": 1, "timestamp": "2020-04-23T19:27:08.9867424Z", "lastWriteTimeUtc": "2020-04-23T18:01:56.3990018Z", - "queryTimestamp": "2020-09-12T21:48:29.6612291Z", + "queryTimestamp": "2020-09-14T19:53:33.6958315Z", "fileCount": 1, "fileSize": 39737 }, @@ -2491,7 +2302,7 @@ "status": 1, "timestamp": "2020-04-19T09:24:04.4380619Z", "lastWriteTimeUtc": "2020-04-18T08:47:00.1753031Z", - "queryTimestamp": "2020-09-12T21:48:29.6612291Z", + "queryTimestamp": "2020-09-14T19:53:33.6958315Z", "fileCount": 1, "fileSize": 66351 }, @@ -2506,7 +2317,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.1503756Z", "lastWriteTimeUtc": "2020-01-31T19:36:24.947709Z", - "queryTimestamp": "2020-09-12T21:48:29.6612291Z", + "queryTimestamp": "2020-09-14T19:53:33.696827Z", "fileCount": 1, "fileSize": 22827 }, @@ -2521,7 +2332,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.1621861Z", "lastWriteTimeUtc": "2020-02-13T19:40:45.0589218Z", - "queryTimestamp": "2020-09-12T21:48:29.6622263Z", + "queryTimestamp": "2020-09-14T19:53:33.696827Z", "fileCount": 1, "fileSize": 14518 }, @@ -2566,7 +2377,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.7829034Z", "lastWriteTimeUtc": "2020-03-22T19:31:37.9246799Z", - "queryTimestamp": "2020-09-12T21:48:29.6622263Z", + "queryTimestamp": "2020-09-14T19:53:33.6978239Z", "fileCount": 5, "fileSize": 0 }, @@ -2581,7 +2392,7 @@ "status": 1, "timestamp": "2020-04-14T19:45:17.1264747Z", "lastWriteTimeUtc": "2020-04-13T21:00:25.3989185Z", - "queryTimestamp": "2020-09-12T21:48:29.6632241Z", + "queryTimestamp": "2020-09-14T19:53:33.6978239Z", "fileCount": 1, "fileSize": 8864 }, @@ -2596,7 +2407,7 @@ "status": 1, "timestamp": "2020-07-26T18:51:05.1577558Z", "lastWriteTimeUtc": "2020-07-26T18:26:10.1605161Z", - "queryTimestamp": "2020-09-12T21:48:29.6632241Z", + "queryTimestamp": "2020-09-14T19:53:33.6998192Z", "fileCount": 1, "fileSize": 7854 }, @@ -2611,7 +2422,7 @@ "status": 1, "timestamp": "2020-07-05T19:54:51.130279Z", "lastWriteTimeUtc": "2020-07-05T19:33:29.7240208Z", - "queryTimestamp": "2020-09-12T21:48:29.6632241Z", + "queryTimestamp": "2020-09-14T19:53:33.6998192Z", "fileCount": 1, "fileSize": 95520 }, @@ -2626,7 +2437,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:27.8564973Z", "lastWriteTimeUtc": "2020-06-28T18:09:28.8471442Z", - "queryTimestamp": "2020-09-12T21:48:29.6642234Z", + "queryTimestamp": "2020-09-14T19:53:33.6998192Z", "fileCount": 1, "fileSize": 61881 }, @@ -2641,7 +2452,7 @@ "status": 1, "timestamp": "2020-06-16T19:13:01.4382664Z", "lastWriteTimeUtc": "2020-06-12T19:16:16.9260345Z", - "queryTimestamp": "2020-09-12T21:48:29.6642234Z", + "queryTimestamp": "2020-09-14T19:53:33.7008167Z", "fileCount": 1, "fileSize": 50235 }, @@ -2656,7 +2467,7 @@ "status": 1, "timestamp": "2020-07-30T19:23:09.5264131Z", "lastWriteTimeUtc": "2020-07-30T18:32:39.8972549Z", - "queryTimestamp": "2020-09-12T21:48:29.6652218Z", + "queryTimestamp": "2020-09-14T19:53:33.7008167Z", "fileCount": 1, "fileSize": 1352240 }, @@ -2671,7 +2482,7 @@ "status": 1, "timestamp": "2020-06-20T18:39:29.7985972Z", "lastWriteTimeUtc": "2020-06-19T20:04:30.336406Z", - "queryTimestamp": "2020-09-12T21:48:29.6652218Z", + "queryTimestamp": "2020-09-14T19:53:33.7008167Z", "fileCount": 1, "fileSize": 88282 }, @@ -2686,7 +2497,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.3408897Z", "lastWriteTimeUtc": "2020-08-15T20:53:02.6446633Z", - "queryTimestamp": "2020-09-12T21:48:29.6662165Z", + "queryTimestamp": "2020-09-14T19:53:33.7018137Z", "fileCount": 1, "fileSize": 255297 }, @@ -2701,7 +2512,7 @@ "status": 1, "timestamp": "2020-07-28T15:05:53.3380538Z", "lastWriteTimeUtc": "2020-07-26T21:37:05.5452468Z", - "queryTimestamp": "2020-09-12T21:48:29.6662165Z", + "queryTimestamp": "2020-09-14T19:53:33.7023289Z", "fileCount": 1, "fileSize": 10601 }, @@ -2749,7 +2560,7 @@ "status": 1, "timestamp": "2020-04-04T19:20:31.1848991Z", "lastWriteTimeUtc": "2020-04-04T19:15:56.0244759Z", - "queryTimestamp": "2020-09-12T21:48:29.6672147Z", + "queryTimestamp": "2020-09-14T19:53:33.7028446Z", "fileCount": 4, "fileSize": 0 }, @@ -2764,7 +2575,7 @@ "status": 1, "timestamp": "2020-07-05T20:34:49.7841116Z", "lastWriteTimeUtc": "2020-07-05T19:58:31.7767358Z", - "queryTimestamp": "2020-09-12T21:48:29.6672147Z", + "queryTimestamp": "2020-09-14T19:53:33.7028446Z", "fileCount": 1, "fileSize": 76502452 }, @@ -2779,7 +2590,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.2249622Z", "lastWriteTimeUtc": "2020-08-26T18:54:29.0650898Z", - "queryTimestamp": "2020-09-12T21:48:29.6672147Z", + "queryTimestamp": "2020-09-14T19:53:33.7028446Z", "fileCount": 1, "fileSize": 13313 }, @@ -2794,7 +2605,7 @@ "status": 1, "timestamp": "2020-07-05T19:54:50.9128542Z", "lastWriteTimeUtc": "2020-07-05T19:32:49.1907909Z", - "queryTimestamp": "2020-09-12T21:48:29.6682155Z", + "queryTimestamp": "2020-09-14T19:53:33.7038322Z", "fileCount": 1, "fileSize": 7105895 }, @@ -2809,7 +2620,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:26.0713036Z", "lastWriteTimeUtc": "2020-09-11T18:22:16.9879454Z", - "queryTimestamp": "2020-09-12T21:48:29.6682155Z", + "queryTimestamp": "2020-09-14T19:53:33.7038322Z", "fileCount": 1, "fileSize": 93664 }, @@ -2824,7 +2635,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.6665946Z", "lastWriteTimeUtc": "2020-09-03T10:45:29.2991952Z", - "queryTimestamp": "2020-09-12T21:48:29.6692086Z", + "queryTimestamp": "2020-09-14T19:53:33.7038322Z", "fileCount": 1, "fileSize": 6270790 }, @@ -2839,7 +2650,7 @@ "status": 1, "timestamp": "2020-07-10T18:30:10.2507122Z", "lastWriteTimeUtc": "2020-07-10T18:19:36.6449567Z", - "queryTimestamp": "2020-09-12T21:48:29.6702053Z", + "queryTimestamp": "2020-09-14T19:53:33.7048293Z", "fileCount": 1, "fileSize": 277923 }, @@ -2854,7 +2665,7 @@ "status": 1, "timestamp": "2020-04-20T17:40:38.833043Z", "lastWriteTimeUtc": "2020-04-20T17:23:51.7857358Z", - "queryTimestamp": "2020-09-12T21:48:29.6712022Z", + "queryTimestamp": "2020-09-14T19:53:33.7048293Z", "fileCount": 1, "fileSize": 1852 }, @@ -2869,7 +2680,7 @@ "status": 1, "timestamp": "2020-07-28T19:52:33.784929Z", "lastWriteTimeUtc": "2020-04-17T20:51:06.3183113Z", - "queryTimestamp": "2020-09-12T21:48:29.6712022Z", + "queryTimestamp": "2020-09-14T19:53:33.7058268Z", "fileCount": 1, "fileSize": 382909 }, @@ -2884,7 +2695,7 @@ "status": 1, "timestamp": "2020-07-03T20:47:54.4868857Z", "lastWriteTimeUtc": "2020-07-03T17:44:45.2483763Z", - "queryTimestamp": "2020-09-12T21:48:29.6712022Z", + "queryTimestamp": "2020-09-14T19:53:33.7058268Z", "fileCount": 1, "fileSize": 1560489 }, @@ -2899,7 +2710,7 @@ "status": 1, "timestamp": "2020-04-09T18:58:10.7317094Z", "lastWriteTimeUtc": "2020-04-07T18:05:56.2205335Z", - "queryTimestamp": "2020-09-12T21:48:29.6721997Z", + "queryTimestamp": "2020-09-14T19:53:33.7058268Z", "fileCount": 1, "fileSize": 6349 }, @@ -2914,7 +2725,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.5178854Z", "lastWriteTimeUtc": "2020-03-16T20:43:02.3922751Z", - "queryTimestamp": "2020-09-12T21:48:29.6721997Z", + "queryTimestamp": "2020-09-14T19:53:33.7068236Z", "fileCount": 1, "fileSize": 3845 }, @@ -2929,7 +2740,7 @@ "status": 1, "timestamp": "2020-08-01T19:06:07.5619978Z", "lastWriteTimeUtc": "2020-08-01T18:41:29.6366098Z", - "queryTimestamp": "2020-09-12T21:48:29.6721997Z", + "queryTimestamp": "2020-09-14T19:53:33.7068236Z", "fileCount": 1, "fileSize": 14776702 }, @@ -2944,7 +2755,7 @@ "status": 1, "timestamp": "2020-08-03T19:57:20.7805583Z", "lastWriteTimeUtc": "2020-08-03T18:57:09.9957579Z", - "queryTimestamp": "2020-09-12T21:48:29.6731969Z", + "queryTimestamp": "2020-09-14T19:53:33.7068236Z", "fileCount": 1, "fileSize": 184356 }, @@ -2959,7 +2770,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.8546775Z", "lastWriteTimeUtc": "2020-07-15T19:38:46.0414896Z", - "queryTimestamp": "2020-09-12T21:48:29.6731969Z", + "queryTimestamp": "2020-09-14T19:53:33.7078218Z", "fileCount": 1, "fileSize": 533222 }, @@ -2974,7 +2785,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.9065379Z", "lastWriteTimeUtc": "2020-07-14T20:20:56.8914823Z", - "queryTimestamp": "2020-09-12T21:48:29.6731969Z", + "queryTimestamp": "2020-09-14T19:53:33.7078218Z", "fileCount": 1, "fileSize": 1890686 }, @@ -2989,7 +2800,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.0556307Z", "lastWriteTimeUtc": "2020-03-02T19:23:07.6207453Z", - "queryTimestamp": "2020-09-12T21:48:29.6741945Z", + "queryTimestamp": "2020-09-14T19:53:33.7078218Z", "fileCount": 1, "fileSize": 207348 }, @@ -3004,7 +2815,7 @@ "status": 1, "timestamp": "2020-08-24T18:09:44.7805408Z", "lastWriteTimeUtc": "2020-08-24T18:00:38.7607117Z", - "queryTimestamp": "2020-09-12T21:48:29.6741945Z", + "queryTimestamp": "2020-09-14T19:53:33.7098162Z", "fileCount": 1, "fileSize": 306949 }, @@ -3019,7 +2830,7 @@ "status": 1, "timestamp": "2020-08-24T18:09:44.5956861Z", "lastWriteTimeUtc": "2020-08-23T21:25:56.5265628Z", - "queryTimestamp": "2020-09-12T21:48:29.6751925Z", + "queryTimestamp": "2020-09-14T19:53:33.7098162Z", "fileCount": 1, "fileSize": 241877 }, @@ -3034,7 +2845,7 @@ "status": 1, "timestamp": "2020-08-22T20:48:50.075475Z", "lastWriteTimeUtc": "2020-08-22T20:04:50.9279373Z", - "queryTimestamp": "2020-09-12T21:48:29.6751925Z", + "queryTimestamp": "2020-09-14T19:53:33.7108135Z", "fileCount": 1, "fileSize": 853753 }, @@ -3049,7 +2860,7 @@ "status": 1, "timestamp": "2020-04-23T19:27:09.1313554Z", "lastWriteTimeUtc": "2020-04-23T18:01:44.4215356Z", - "queryTimestamp": "2020-09-12T21:48:29.6751925Z", + "queryTimestamp": "2020-09-14T19:53:33.7108135Z", "fileCount": 1, "fileSize": 4891 }, @@ -3079,7 +2890,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.7165984Z", "lastWriteTimeUtc": "2020-09-11T17:31:57.1850103Z", - "queryTimestamp": "2020-09-12T21:48:29.6761893Z", + "queryTimestamp": "2020-09-14T19:53:33.7123559Z", "fileCount": 1, "fileSize": 2187540 }, @@ -3094,7 +2905,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.786276Z", "lastWriteTimeUtc": "2020-08-28T18:44:06.6781926Z", - "queryTimestamp": "2020-09-12T21:48:29.6761893Z", + "queryTimestamp": "2020-09-14T19:53:33.7128753Z", "fileCount": 1, "fileSize": 341796 }, @@ -3109,7 +2920,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.890994Z", "lastWriteTimeUtc": "2020-08-28T18:45:40.94602Z", - "queryTimestamp": "2020-09-12T21:48:29.6761893Z", + "queryTimestamp": "2020-09-14T19:53:33.7128753Z", "fileCount": 1, "fileSize": 538188 }, @@ -3124,7 +2935,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:14.8361995Z", "lastWriteTimeUtc": "2020-02-06T17:50:05.7200244Z", - "queryTimestamp": "2020-09-12T21:48:29.6771864Z", + "queryTimestamp": "2020-09-14T19:53:33.7138619Z", "fileCount": 1, "fileSize": 22121 }, @@ -3139,7 +2950,7 @@ "status": 1, "timestamp": "2020-06-25T20:49:57.2549764Z", "lastWriteTimeUtc": "2020-06-25T20:08:30.0445268Z", - "queryTimestamp": "2020-09-12T21:48:29.6771864Z", + "queryTimestamp": "2020-09-14T19:53:33.7138619Z", "fileCount": 1, "fileSize": 496919 }, @@ -3154,7 +2965,7 @@ "status": 1, "timestamp": "2020-07-28T19:15:34.2988591Z", "lastWriteTimeUtc": "2020-05-14T19:53:34.0614688Z", - "queryTimestamp": "2020-09-12T21:48:29.6781838Z", + "queryTimestamp": "2020-09-14T19:53:33.7138619Z", "fileCount": 1, "fileSize": 56504 }, @@ -3169,7 +2980,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.6201414Z", "lastWriteTimeUtc": "2020-08-05T20:53:41.8568038Z", - "queryTimestamp": "2020-09-12T21:48:29.6781838Z", + "queryTimestamp": "2020-09-14T19:53:33.7148593Z", "fileCount": 1, "fileSize": 1008899 }, @@ -3184,7 +2995,7 @@ "status": 1, "timestamp": "2020-05-15T18:26:23.8556095Z", "lastWriteTimeUtc": "2020-05-15T18:00:31.472417Z", - "queryTimestamp": "2020-09-12T21:48:29.6781838Z", + "queryTimestamp": "2020-09-14T19:53:33.7148593Z", "fileCount": 1, "fileSize": 5445 }, @@ -3234,7 +3045,7 @@ "status": 1, "timestamp": "2020-05-12T19:50:08.9822208Z", "lastWriteTimeUtc": "2020-05-06T19:19:02.0510529Z", - "queryTimestamp": "2020-09-12T21:48:29.679181Z", + "queryTimestamp": "2020-09-14T19:53:33.7148593Z", "fileCount": 4, "fileSize": 0 }, @@ -3249,7 +3060,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.4092823Z", "lastWriteTimeUtc": "2020-09-01T20:21:49.262645Z", - "queryTimestamp": "2020-09-12T21:48:29.679181Z", + "queryTimestamp": "2020-09-14T19:53:33.7158566Z", "fileCount": 1, "fileSize": 173370 }, @@ -3306,10 +3117,25 @@ "status": 1, "timestamp": "2020-07-12T20:10:27.1494016Z", "lastWriteTimeUtc": "2020-07-12T19:42:24.0560851Z", - "queryTimestamp": "2020-09-12T21:48:29.6801786Z", + "queryTimestamp": "2020-09-14T19:53:33.7158566Z", "fileCount": 3, "fileSize": 0 }, + { + "folderName": "EmendatusEnigmatica-1.15.2-1.0.7.jar", + "fingerprint": 764508960, + "fileDateHash": 199454862, + "sectionID": 8, + "individualFingerprints": [ + 764508960 + ], + "status": 1, + "timestamp": "2020-09-14T19:53:32.2377928Z", + "lastWriteTimeUtc": "2020-09-14T19:06:41.2022227Z", + "queryTimestamp": "2020-09-14T19:53:33.7158566Z", + "fileCount": 1, + "fileSize": 1904170 + }, { "folderName": "immersiveposts-1.15.2-2.1.0.jar", "fingerprint": 3414603885, @@ -3321,7 +3147,7 @@ "status": 1, "timestamp": "2020-07-05T20:34:50.1771663Z", "lastWriteTimeUtc": "2020-07-05T19:58:43.0130775Z", - "queryTimestamp": "2020-09-12T21:48:29.681176Z", + "queryTimestamp": "2020-09-14T19:53:33.7168545Z", "fileCount": 1, "fileSize": 330118 }, @@ -3336,7 +3162,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:27.8934Z", "lastWriteTimeUtc": "2020-06-27T19:47:19.2211976Z", - "queryTimestamp": "2020-09-12T21:48:29.681176Z", + "queryTimestamp": "2020-09-14T19:53:33.7168545Z", "fileCount": 1, "fileSize": 277009 }, @@ -3351,7 +3177,7 @@ "status": 1, "timestamp": "2020-04-04T19:01:39.9440616Z", "lastWriteTimeUtc": "2020-04-04T18:25:45.1508534Z", - "queryTimestamp": "2020-09-12T21:48:29.682174Z", + "queryTimestamp": "2020-09-14T19:53:33.7178514Z", "fileCount": 1, "fileSize": 18052 }, @@ -3366,7 +3192,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:27.8545041Z", "lastWriteTimeUtc": "2020-06-26T21:04:10.7809987Z", - "queryTimestamp": "2020-09-12T21:48:29.682174Z", + "queryTimestamp": "2020-09-14T19:53:33.7178514Z", "fileCount": 1, "fileSize": 28861 }, @@ -3425,7 +3251,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.8687021Z", "lastWriteTimeUtc": "2020-03-22T22:22:38.3686718Z", - "queryTimestamp": "2020-09-12T21:48:29.6831731Z", + "queryTimestamp": "2020-09-14T19:53:33.7178514Z", "fileCount": 5, "fileSize": 0 }, @@ -3440,7 +3266,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.6739973Z", "lastWriteTimeUtc": "2020-08-16T20:19:27.4801004Z", - "queryTimestamp": "2020-09-12T21:48:29.6831731Z", + "queryTimestamp": "2020-09-14T19:53:33.7188489Z", "fileCount": 1, "fileSize": 72022 }, @@ -3455,7 +3281,7 @@ "status": 1, "timestamp": "2020-05-14T19:49:33.4984415Z", "lastWriteTimeUtc": "2020-05-14T17:36:59.8689747Z", - "queryTimestamp": "2020-09-12T21:48:29.6841678Z", + "queryTimestamp": "2020-09-14T19:53:33.7188489Z", "fileCount": 1, "fileSize": 139878 }, @@ -3470,7 +3296,7 @@ "status": 1, "timestamp": "2020-05-12T19:50:08.9031704Z", "lastWriteTimeUtc": "2020-05-07T17:51:34.924327Z", - "queryTimestamp": "2020-09-12T21:48:29.6841678Z", + "queryTimestamp": "2020-09-14T19:53:33.7198461Z", "fileCount": 1, "fileSize": 35214 }, @@ -3485,7 +3311,7 @@ "status": 1, "timestamp": "2020-07-11T19:07:00.3783757Z", "lastWriteTimeUtc": "2020-07-11T18:13:52.1502767Z", - "queryTimestamp": "2020-09-12T21:48:29.6841678Z", + "queryTimestamp": "2020-09-14T19:53:33.7208441Z", "fileCount": 1, "fileSize": 299555 }, @@ -3500,7 +3326,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.2169319Z", "lastWriteTimeUtc": "2020-03-28T07:59:14.2108515Z", - "queryTimestamp": "2020-09-12T21:48:29.6851651Z", + "queryTimestamp": "2020-09-14T19:53:33.7208441Z", "fileCount": 1, "fileSize": 8126 }, @@ -3515,7 +3341,7 @@ "status": 1, "timestamp": "2020-07-05T20:57:24.2339912Z", "lastWriteTimeUtc": "2020-07-05T20:35:10.357134Z", - "queryTimestamp": "2020-09-12T21:48:29.6851651Z", + "queryTimestamp": "2020-09-14T19:53:33.7218406Z", "fileCount": 1, "fileSize": 34303 }, @@ -3530,7 +3356,7 @@ "status": 1, "timestamp": "2020-04-03T18:13:43.7746532Z", "lastWriteTimeUtc": "2020-04-03T17:40:07.9954123Z", - "queryTimestamp": "2020-09-12T21:48:29.6851651Z", + "queryTimestamp": "2020-09-14T19:53:33.7223561Z", "fileCount": 1, "fileSize": 45363 }, @@ -3545,7 +3371,7 @@ "status": 1, "timestamp": "2020-08-03T19:57:21.0069532Z", "lastWriteTimeUtc": "2020-08-03T18:59:02.3245631Z", - "queryTimestamp": "2020-09-12T21:48:29.6861627Z", + "queryTimestamp": "2020-09-14T19:53:33.722871Z", "fileCount": 1, "fileSize": 1298382 }, @@ -3560,7 +3386,7 @@ "status": 1, "timestamp": "2020-08-01T19:06:07.6477685Z", "lastWriteTimeUtc": "2020-07-31T20:18:05.6188274Z", - "queryTimestamp": "2020-09-12T21:48:29.6861627Z", + "queryTimestamp": "2020-09-14T19:53:33.722871Z", "fileCount": 1, "fileSize": 940864 }, @@ -3575,7 +3401,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.3488675Z", "lastWriteTimeUtc": "2020-08-18T18:14:18.7268452Z", - "queryTimestamp": "2020-09-12T21:48:29.6861627Z", + "queryTimestamp": "2020-09-14T19:53:33.722871Z", "fileCount": 1, "fileSize": 717043 }, @@ -3590,7 +3416,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.9185055Z", "lastWriteTimeUtc": "2020-07-22T18:19:00.39654Z", - "queryTimestamp": "2020-09-12T21:48:29.6871597Z", + "queryTimestamp": "2020-09-14T19:53:33.7238581Z", "fileCount": 1, "fileSize": 687658 }, @@ -3605,7 +3431,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:15.4440923Z", "lastWriteTimeUtc": "2020-01-31T20:43:58.206192Z", - "queryTimestamp": "2020-09-12T21:48:29.6871597Z", + "queryTimestamp": "2020-09-14T19:53:33.7238581Z", "fileCount": 1, "fileSize": 2854 }, @@ -3620,7 +3446,7 @@ "status": 1, "timestamp": "2020-05-30T20:18:09.6396573Z", "lastWriteTimeUtc": "2020-05-30T18:14:02.4434743Z", - "queryTimestamp": "2020-09-12T21:48:29.6881571Z", + "queryTimestamp": "2020-09-14T19:53:33.7238581Z", "fileCount": 1, "fileSize": 321126 }, @@ -3635,7 +3461,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:15.9517489Z", "lastWriteTimeUtc": "2020-02-13T19:33:12.8160278Z", - "queryTimestamp": "2020-09-12T21:48:29.6881571Z", + "queryTimestamp": "2020-09-14T19:53:33.7248556Z", "fileCount": 1, "fileSize": 26321 }, @@ -3650,7 +3476,7 @@ "status": 1, "timestamp": "2020-07-12T21:58:57.5597224Z", "lastWriteTimeUtc": "2020-07-12T21:56:19.5539198Z", - "queryTimestamp": "2020-09-12T21:48:29.6881571Z", + "queryTimestamp": "2020-09-14T19:53:33.7248556Z", "fileCount": 1, "fileSize": 88207 }, @@ -3665,7 +3491,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:54.5749365Z", "lastWriteTimeUtc": "2020-08-16T20:18:26.4381812Z", - "queryTimestamp": "2020-09-12T21:48:29.6891543Z", + "queryTimestamp": "2020-09-14T19:53:33.7248556Z", "fileCount": 1, "fileSize": 464780 }, @@ -3680,7 +3506,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:26.0882585Z", "lastWriteTimeUtc": "2020-09-11T18:24:47.5805765Z", - "queryTimestamp": "2020-09-12T21:48:29.6891543Z", + "queryTimestamp": "2020-09-14T19:53:33.7258527Z", "fileCount": 1, "fileSize": 556160 }, @@ -3695,7 +3521,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.1749386Z", "lastWriteTimeUtc": "2020-03-23T20:05:37.3461951Z", - "queryTimestamp": "2020-09-12T21:48:29.6891543Z", + "queryTimestamp": "2020-09-14T19:53:33.7258527Z", "fileCount": 1, "fileSize": 186909 }, @@ -3710,7 +3536,7 @@ "status": 1, "timestamp": "2020-08-23T21:25:47.4901849Z", "lastWriteTimeUtc": "2020-08-22T20:50:47.8238297Z", - "queryTimestamp": "2020-09-12T21:48:29.6911491Z", + "queryTimestamp": "2020-09-14T19:53:33.7268507Z", "fileCount": 1, "fileSize": 346100 }, @@ -3725,7 +3551,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.7354101Z", "lastWriteTimeUtc": "2020-09-06T18:00:05.2304201Z", - "queryTimestamp": "2020-09-12T21:48:29.6911491Z", + "queryTimestamp": "2020-09-14T19:53:33.7268507Z", "fileCount": 1, "fileSize": 1680776 }, @@ -3740,7 +3566,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.8680564Z", "lastWriteTimeUtc": "2020-09-03T10:46:41.4988235Z", - "queryTimestamp": "2020-09-12T21:48:29.6911491Z", + "queryTimestamp": "2020-09-14T19:53:33.7268507Z", "fileCount": 1, "fileSize": 320582 }, @@ -3755,7 +3581,7 @@ "status": 1, "timestamp": "2020-07-29T20:03:06.6992774Z", "lastWriteTimeUtc": "2020-07-29T18:13:03.1127746Z", - "queryTimestamp": "2020-09-12T21:48:29.692147Z", + "queryTimestamp": "2020-09-14T19:53:33.7278486Z", "fileCount": 1, "fileSize": 514576 }, @@ -3770,7 +3596,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.8151969Z", "lastWriteTimeUtc": "2020-09-06T18:00:51.5293836Z", - "queryTimestamp": "2020-09-12T21:48:29.692147Z", + "queryTimestamp": "2020-09-14T19:53:33.7278486Z", "fileCount": 1, "fileSize": 5136192 }, @@ -3785,7 +3611,7 @@ "status": 1, "timestamp": "2020-06-23T21:12:17.4936031Z", "lastWriteTimeUtc": "2020-06-23T20:59:11.2050289Z", - "queryTimestamp": "2020-09-12T21:48:29.692147Z", + "queryTimestamp": "2020-09-14T19:53:33.7288459Z", "fileCount": 1, "fileSize": 10400 }, @@ -3800,7 +3626,7 @@ "status": 1, "timestamp": "2020-07-28T18:27:02.6260042Z", "lastWriteTimeUtc": "2020-07-28T15:07:31.481536Z", - "queryTimestamp": "2020-09-12T21:48:29.6931436Z", + "queryTimestamp": "2020-09-14T19:53:33.7288459Z", "fileCount": 1, "fileSize": 402673 }, @@ -3815,7 +3641,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:28.1008437Z", "lastWriteTimeUtc": "2020-06-26T21:05:20.0283621Z", - "queryTimestamp": "2020-09-12T21:48:29.6931436Z", + "queryTimestamp": "2020-09-14T19:53:33.7298457Z", "fileCount": 1, "fileSize": 163210 }, @@ -3830,25 +3656,10 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.1869295Z", "lastWriteTimeUtc": "2020-03-20T18:31:51.2099633Z", - "queryTimestamp": "2020-09-12T21:48:29.6941412Z", + "queryTimestamp": "2020-09-14T19:53:33.7298457Z", "fileCount": 1, "fileSize": 65098 }, - { - "folderName": "rftoolspower-1.15-2.2.4.jar", - "fingerprint": 2833144682, - "fileDateHash": 4237552511, - "sectionID": 8, - "individualFingerprints": [ - 2833144682 - ], - "status": 1, - "timestamp": "2020-09-06T18:29:35.7763008Z", - "lastWriteTimeUtc": "2020-08-28T18:44:08.7624063Z", - "queryTimestamp": "2020-09-12T21:48:29.6941412Z", - "fileCount": 1, - "fileSize": 559054 - }, { "folderName": "The-Endergetic-Expansion-1.15.2-v1.3.2.jar", "fingerprint": 1626731453, @@ -3860,24 +3671,24 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.7278549Z", "lastWriteTimeUtc": "2020-08-17T18:51:19.7524257Z", - "queryTimestamp": "2020-09-12T21:48:29.6941412Z", + "queryTimestamp": "2020-09-14T19:53:33.7308448Z", "fileCount": 1, "fileSize": 7083211 }, { - "folderName": "BetterCaves-1.15.2-1.0.jar", - "fingerprint": 908342816, - "fileDateHash": 1060304014, + "folderName": "rftoolspower-1.15-2.2.4.jar", + "fingerprint": 2833144682, + "fileDateHash": 4237552511, "sectionID": 8, "individualFingerprints": [ - 908342816 + 2833144682 ], "status": 1, - "timestamp": "2020-07-28T18:29:02.3192787Z", - "lastWriteTimeUtc": "2020-07-28T18:27:24.2577692Z", - "queryTimestamp": "2020-09-12T21:48:29.6951391Z", + "timestamp": "2020-09-06T18:29:35.7763008Z", + "lastWriteTimeUtc": "2020-08-28T18:44:08.7624063Z", + "queryTimestamp": "2020-09-14T19:53:33.7318369Z", "fileCount": 1, - "fileSize": 470503 + "fileSize": 559054 }, { "folderName": "FastFurnace-1.15.1-3.0.0.jar", @@ -3890,10 +3701,25 @@ "status": 1, "timestamp": "2020-03-08T18:37:54.9659469Z", "lastWriteTimeUtc": "2020-03-07T19:18:16.9715655Z", - "queryTimestamp": "2020-09-12T21:48:29.6951391Z", + "queryTimestamp": "2020-09-14T19:53:33.7323506Z", "fileCount": 1, "fileSize": 15647 }, + { + "folderName": "BetterCaves-1.15.2-1.0.jar", + "fingerprint": 908342816, + "fileDateHash": 1060304014, + "sectionID": 8, + "individualFingerprints": [ + 908342816 + ], + "status": 1, + "timestamp": "2020-07-28T18:29:02.3192787Z", + "lastWriteTimeUtc": "2020-07-28T18:27:24.2577692Z", + "queryTimestamp": "2020-09-14T19:53:33.7328626Z", + "fileCount": 1, + "fileSize": 470503 + }, { "folderName": "New World (6)", "fingerprint": 2600808326, @@ -4081,7 +3907,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:15.2101992Z", "lastWriteTimeUtc": "2020-02-02T19:17:18.792614Z", - "queryTimestamp": "2020-09-12T21:48:29.6951391Z", + "queryTimestamp": "2020-09-14T19:53:33.7328626Z", "fileCount": 1, "fileSize": 52594 }, @@ -4096,7 +3922,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.5706009Z", "lastWriteTimeUtc": "2020-01-31T20:41:39.2864353Z", - "queryTimestamp": "2020-09-12T21:48:29.6961364Z", + "queryTimestamp": "2020-09-14T19:53:33.7338525Z", "fileCount": 1, "fileSize": 33098 }, @@ -4111,7 +3937,7 @@ "status": 1, "timestamp": "2020-09-12T21:48:28.5863402Z", "lastWriteTimeUtc": "2020-09-12T18:09:54.9432152Z", - "queryTimestamp": "2020-09-12T21:48:29.6961364Z", + "queryTimestamp": "2020-09-14T19:53:33.7338525Z", "fileCount": 1, "fileSize": 715662 }, @@ -4126,7 +3952,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.8377229Z", "lastWriteTimeUtc": "2020-07-14T20:20:32.7801968Z", - "queryTimestamp": "2020-09-12T21:48:29.6971328Z", + "queryTimestamp": "2020-09-14T19:53:33.7338525Z", "fileCount": 1, "fileSize": 2782599 }, @@ -4141,7 +3967,7 @@ "status": 1, "timestamp": "2020-05-15T18:26:23.8556095Z", "lastWriteTimeUtc": "2020-05-15T18:00:29.5151672Z", - "queryTimestamp": "2020-09-12T21:48:29.6971328Z", + "queryTimestamp": "2020-09-14T19:53:33.7348497Z", "fileCount": 1, "fileSize": 20028 }, @@ -4156,7 +3982,7 @@ "status": 1, "timestamp": "2020-06-25T20:49:57.2529816Z", "lastWriteTimeUtc": "2020-06-25T20:08:23.9554725Z", - "queryTimestamp": "2020-09-12T21:48:29.6971328Z", + "queryTimestamp": "2020-09-14T19:53:33.7348497Z", "fileCount": 1, "fileSize": 92282 }, @@ -4171,7 +3997,7 @@ "status": 1, "timestamp": "2020-04-23T19:27:09.1313554Z", "lastWriteTimeUtc": "2020-04-23T18:00:49.1143093Z", - "queryTimestamp": "2020-09-12T21:48:29.6981309Z", + "queryTimestamp": "2020-09-14T19:53:33.7348497Z", "fileCount": 1, "fileSize": 45034 }, @@ -4186,7 +4012,7 @@ "status": 1, "timestamp": "2020-09-12T21:48:28.5923215Z", "lastWriteTimeUtc": "2020-09-12T18:09:59.8289801Z", - "queryTimestamp": "2020-09-12T21:48:29.6981309Z", + "queryTimestamp": "2020-09-14T19:53:33.7358468Z", "fileCount": 1, "fileSize": 348976 }, @@ -4201,7 +4027,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.7784331Z", "lastWriteTimeUtc": "2020-09-11T17:33:28.0353679Z", - "queryTimestamp": "2020-09-12T21:48:29.6981309Z", + "queryTimestamp": "2020-09-14T19:53:33.7358468Z", "fileCount": 1, "fileSize": 3119481 }, @@ -4216,7 +4042,7 @@ "status": 1, "timestamp": "2020-04-26T19:02:29.204162Z", "lastWriteTimeUtc": "2020-04-26T18:33:03.6260631Z", - "queryTimestamp": "2020-09-12T21:48:29.6991279Z", + "queryTimestamp": "2020-09-14T19:53:33.7368442Z", "fileCount": 1, "fileSize": 3864 }, @@ -4231,7 +4057,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.5258631Z", "lastWriteTimeUtc": "2020-03-16T19:35:36.6567469Z", - "queryTimestamp": "2020-09-12T21:48:29.6991279Z", + "queryTimestamp": "2020-09-14T19:53:33.7368442Z", "fileCount": 1, "fileSize": 394633 }, @@ -4246,7 +4072,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.1809459Z", "lastWriteTimeUtc": "2020-03-20T18:31:08.9893987Z", - "queryTimestamp": "2020-09-12T21:48:29.700125Z", + "queryTimestamp": "2020-09-14T19:53:33.7368442Z", "fileCount": 1, "fileSize": 51783 }, @@ -4261,7 +4087,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:28.0848871Z", "lastWriteTimeUtc": "2020-06-27T19:47:28.607902Z", - "queryTimestamp": "2020-09-12T21:48:29.700125Z", + "queryTimestamp": "2020-09-14T19:53:33.7378418Z", "fileCount": 1, "fileSize": 5267 }, @@ -4276,7 +4102,7 @@ "status": 1, "timestamp": "2020-07-28T19:15:34.2998564Z", "lastWriteTimeUtc": "2020-04-17T20:51:06.3262883Z", - "queryTimestamp": "2020-09-12T21:48:29.7011226Z", + "queryTimestamp": "2020-09-14T19:53:33.7378418Z", "fileCount": 1, "fileSize": 56385 }, @@ -4291,7 +4117,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.1025045Z", "lastWriteTimeUtc": "2020-01-31T19:34:33.2556184Z", - "queryTimestamp": "2020-09-12T21:48:29.7011226Z", + "queryTimestamp": "2020-09-14T19:53:33.7378418Z", "fileCount": 1, "fileSize": 22255 }, @@ -4306,7 +4132,7 @@ "status": 1, "timestamp": "2020-07-05T21:00:42.6331573Z", "lastWriteTimeUtc": "2020-07-05T21:00:38.1507044Z", - "queryTimestamp": "2020-09-12T21:48:29.7011226Z", + "queryTimestamp": "2020-09-14T19:53:33.738839Z", "fileCount": 1, "fileSize": 257410 }, @@ -4321,7 +4147,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:27.8574957Z", "lastWriteTimeUtc": "2020-06-26T21:04:19.2127185Z", - "queryTimestamp": "2020-09-12T21:48:29.7021194Z", + "queryTimestamp": "2020-09-14T19:53:33.738839Z", "fileCount": 1, "fileSize": 3232629 }, @@ -4336,7 +4162,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.7564915Z", "lastWriteTimeUtc": "2020-09-11T17:33:13.4317173Z", - "queryTimestamp": "2020-09-12T21:48:29.7021194Z", + "queryTimestamp": "2020-09-14T19:53:33.738839Z", "fileCount": 1, "fileSize": 865261 }, @@ -4351,7 +4177,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:54.6008675Z", "lastWriteTimeUtc": "2020-08-13T18:32:34.8956619Z", - "queryTimestamp": "2020-09-12T21:48:29.7031172Z", + "queryTimestamp": "2020-09-14T19:53:33.7398362Z", "fileCount": 1, "fileSize": 131751 }, @@ -4366,7 +4192,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.8586698Z", "lastWriteTimeUtc": "2020-07-18T10:25:52.3460426Z", - "queryTimestamp": "2020-09-12T21:48:29.7031172Z", + "queryTimestamp": "2020-09-14T19:53:33.7398362Z", "fileCount": 1, "fileSize": 195562 }, @@ -4381,7 +4207,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.0923732Z", "lastWriteTimeUtc": "2020-01-31T20:44:12.566903Z", - "queryTimestamp": "2020-09-12T21:48:29.7031172Z", + "queryTimestamp": "2020-09-14T19:53:33.741831Z", "fileCount": 1, "fileSize": 7772 }, @@ -4396,7 +4222,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.0606157Z", "lastWriteTimeUtc": "2020-02-26T18:31:00.785265Z", - "queryTimestamp": "2020-09-12T21:48:29.7041143Z", + "queryTimestamp": "2020-09-14T19:53:33.741831Z", "fileCount": 1, "fileSize": 487627 }, @@ -4411,7 +4237,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.7076224Z", "lastWriteTimeUtc": "2020-09-10T18:56:48.0652281Z", - "queryTimestamp": "2020-09-12T21:48:29.7041143Z", + "queryTimestamp": "2020-09-14T19:53:33.7423433Z", "fileCount": 1, "fileSize": 231739 }, @@ -4426,25 +4252,10 @@ "status": 1, "timestamp": "2020-06-16T19:13:01.5120691Z", "lastWriteTimeUtc": "2020-06-15T19:20:55.666707Z", - "queryTimestamp": "2020-09-12T21:48:29.7041143Z", + "queryTimestamp": "2020-09-14T19:53:33.7428556Z", "fileCount": 1, "fileSize": 1404300 }, - { - "folderName": "DungeonCrawl-1.15.2-2.0.2.jar", - "fingerprint": 2397197383, - "fileDateHash": 3670058470, - "sectionID": 8, - "individualFingerprints": [ - 2397197383 - ], - "status": 1, - "timestamp": "2020-08-03T21:09:41.8678099Z", - "lastWriteTimeUtc": "2020-08-03T19:57:51.4176615Z", - "queryTimestamp": "2020-09-12T21:48:29.7051119Z", - "fileCount": 1, - "fileSize": 385478 - }, { "folderName": "World-Stripper-1.7.2-1.15.1.jar", "fingerprint": 4184242649, @@ -4456,7 +4267,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.3598922Z", "lastWriteTimeUtc": "2020-01-31T20:42:05.5443908Z", - "queryTimestamp": "2020-09-12T21:48:29.7051119Z", + "queryTimestamp": "2020-09-14T19:53:33.7428556Z", "fileCount": 1, "fileSize": 46859 }, @@ -4471,7 +4282,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.7966705Z", "lastWriteTimeUtc": "2020-08-17T21:08:41.6652182Z", - "queryTimestamp": "2020-09-12T21:48:29.7061093Z", + "queryTimestamp": "2020-09-14T19:53:33.7428556Z", "fileCount": 1, "fileSize": 451990 }, @@ -4486,13 +4297,13 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.0366801Z", "lastWriteTimeUtc": "2020-01-31T20:40:27.827066Z", - "queryTimestamp": "2020-09-12T21:48:29.7061093Z", + "queryTimestamp": "2020-09-14T19:53:33.743846Z", "fileCount": 1, "fileSize": 377368 } ], "isValid": true, - "lastPreviousMatchUpdate": "2020-09-13T20:07:04.3257527Z", + "lastPreviousMatchUpdate": "2020-09-14T19:53:34.9648526Z", "isEnabled": true, "isPinned": false, "gameVersion": "1.15.2", @@ -18280,6 +18091,68 @@ "manifestName": null, "installedTargets": null }, + { + "addonID": 232131, + "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", + "installedFile": { + "id": 2880426, + "displayName": "DefaultOptions_1.15.2-11.0.1.jar", + "fileName": "DefaultOptions_1.15.2-11.0.1.jar", + "fileDate": "2020-02-12T19:13:07.807Z", + "fileLength": 14518, + "releaseType": 2, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/2880/426/DefaultOptions_1.15.2-11.0.1.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 1631546758, + "type": 0 + }, + { + "foldername": "net", + "fingerprint": 1884610213, + "type": 0 + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 3230626572, + "type": 0 + } + ], + "packageFingerprint": 2769955196, + "gameVersion": [ + "1.15.2" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2020-01-22T00:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "DefaultOptions_1.15.2-11.0.1.jar" + }, + "dateInstalled": "2020-02-02T19:05:36.1404592Z", + "dateUpdated": "2020-02-13T19:40:45.2989238Z", + "dateLastUpdateAttempted": "2020-02-13T19:40:45.2989238Z", + "status": 5, + "preferenceAutoInstallUpdates": false, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, { "addonID": 237701, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", @@ -18352,79 +18225,17 @@ "installedTargets": null }, { - "addonID": 232131, + "addonID": 306770, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2880426, - "displayName": "DefaultOptions_1.15.2-11.0.1.jar", - "fileName": "DefaultOptions_1.15.2-11.0.1.jar", - "fileDate": "2020-02-12T19:13:07.807Z", - "fileLength": 14518, - "releaseType": 2, + "id": 3000903, + "displayName": "Patchouli-1.15.2-1.2-35.jar", + "fileName": "Patchouli-1.15.2-1.2-35.jar", + "fileDate": "2020-07-10T03:11:29.63Z", + "fileLength": 533222, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2880/426/DefaultOptions_1.15.2-11.0.1.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 1631546758, - "type": 0 - }, - { - "foldername": "net", - "fingerprint": 1884610213, - "type": 0 - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 3230626572, - "type": 0 - } - ], - "packageFingerprint": 2769955196, - "gameVersion": [ - "1.15.2" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2020-01-22T00:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "DefaultOptions_1.15.2-11.0.1.jar" - }, - "dateInstalled": "2020-02-02T19:05:36.1404592Z", - "dateUpdated": "2020-02-13T19:40:45.2989238Z", - "dateLastUpdateAttempted": "2020-02-13T19:40:45.2989238Z", - "status": 5, - "preferenceAutoInstallUpdates": false, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 306770, - "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", - "installedFile": { - "id": 3000903, - "displayName": "Patchouli-1.15.2-1.2-35.jar", - "fileName": "Patchouli-1.15.2-1.2-35.jar", - "fileDate": "2020-07-10T03:11:29.63Z", - "fileLength": 533222, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3000/903/Patchouli-1.15.2-1.2-35.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3000/903/Patchouli-1.15.2-1.2-35.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -18492,23 +18303,23 @@ "installedTargets": null }, { - "addonID": 291737, + "addonID": 245506, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3054246, - "displayName": "thermal_innovation-1.15.2-0.2.2b.jar", - "fileName": "thermal_innovation-1.15.2-0.2.2b.jar", - "fileDate": "2020-09-11T03:35:28.387Z", - "fileLength": 93664, - "releaseType": 2, + "id": 3057115, + "displayName": "minecolonies-0.13.257-ALPHA-universal.jar", + "fileName": "minecolonies-0.13.257-ALPHA-universal.jar", + "fileDate": "2020-09-14T16:39:36.08Z", + "fileLength": 32707174, + "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3054/246/thermal_innovation-1.15.2-0.2.2b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/115/minecolonies-0.13.257-ALPHA-universal.jar", "isAlternate": false, - "alternateFileId": 0, + "alternateFileId": 3057116, "dependencies": [ { "id": 0, - "addonId": 222880, + "addonId": 298744, "type": 3, "fileId": 0 } @@ -18517,38 +18328,32 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 772759795, + "fingerprint": 1771402436, "type": 0 }, { - "foldername": "cofh", - "fingerprint": 1464404833, + "foldername": "com", + "fingerprint": 2494840528, "type": 0 }, { "foldername": "assets", - "fingerprint": 1622474079, + "fingerprint": 404263616, "type": 0 }, { "foldername": "data", - "fingerprint": 3353708073, - "type": 0 - }, - { - "foldername": "logo.png", - "fingerprint": 721674231, + "fingerprint": 3255767755, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 4253522632, + "fingerprint": 1355987511, "type": 0 } ], - "packageFingerprint": 623559186, + "packageFingerprint": 1121726036, "gameVersion": [ - "Forge", "1.15.2" ], "hasInstallScript": false, @@ -18560,12 +18365,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal_innovation-1.15.2-0.2.2b.jar" + "FileNameOnDisk": "minecolonies-0.13.257-ALPHA-universal.jar" }, - "dateInstalled": "2020-09-08T11:11:21.4280209Z", - "dateUpdated": "2020-09-11T18:22:16.9879454Z", - "dateLastUpdateAttempted": "2020-09-11T18:22:16.9879454Z", - "status": 5, + "dateInstalled": "2020-07-28T15:30:44.1670577Z", + "dateUpdated": "2020-09-14T19:07:18.2938071Z", + "dateLastUpdateAttempted": "2020-09-14T19:07:18.2938071Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -18577,23 +18382,23 @@ "installedTargets": null }, { - "addonID": 245506, + "addonID": 291737, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3057115, - "displayName": "minecolonies-0.13.257-ALPHA-universal.jar", - "fileName": "minecolonies-0.13.257-ALPHA-universal.jar", - "fileDate": "2020-09-14T16:39:36.08Z", - "fileLength": 32707174, - "releaseType": 3, + "id": 3054246, + "displayName": "thermal_innovation-1.15.2-0.2.2b.jar", + "fileName": "thermal_innovation-1.15.2-0.2.2b.jar", + "fileDate": "2020-09-11T03:35:28.387Z", + "fileLength": 93664, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3057/115/minecolonies-0.13.257-ALPHA-universal.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3054/246/thermal_innovation-1.15.2-0.2.2b.jar", "isAlternate": false, - "alternateFileId": 3057116, + "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 298744, + "addonId": 222880, "type": 3, "fileId": 0 } @@ -18602,32 +18407,38 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1771402436, + "fingerprint": 772759795, "type": 0 }, { - "foldername": "com", - "fingerprint": 2494840528, + "foldername": "cofh", + "fingerprint": 1464404833, "type": 0 }, { "foldername": "assets", - "fingerprint": 404263616, + "fingerprint": 1622474079, "type": 0 }, { "foldername": "data", - "fingerprint": 3255767755, + "fingerprint": 3353708073, + "type": 0 + }, + { + "foldername": "logo.png", + "fingerprint": 721674231, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 1355987511, + "fingerprint": 4253522632, "type": 0 } ], - "packageFingerprint": 1121726036, + "packageFingerprint": 623559186, "gameVersion": [ + "Forge", "1.15.2" ], "hasInstallScript": false, @@ -18639,12 +18450,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "minecolonies-0.13.257-ALPHA-universal.jar" + "FileNameOnDisk": "thermal_innovation-1.15.2-0.2.2b.jar" }, - "dateInstalled": "2020-07-28T15:30:44.1670577Z", - "dateUpdated": "2020-09-14T19:07:18.2938071Z", - "dateLastUpdateAttempted": "2020-09-14T19:07:18.2938071Z", - "status": 4, + "dateInstalled": "2020-09-08T11:11:21.4280209Z", + "dateUpdated": "2020-09-11T18:22:16.9879454Z", + "dateLastUpdateAttempted": "2020-09-11T18:22:16.9879454Z", + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -19435,73 +19246,6 @@ "manifestName": null, "installedTargets": null }, - { - "addonID": 316833, - "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", - "installedFile": { - "id": 3008248, - "displayName": "ObserverLib-1.15.2-1.2.0.jar", - "fileName": "observerlib-1.15.2-1.2.0.v60.jar", - "fileDate": "2020-07-18T14:57:05.08Z", - "fileLength": 136840, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3008/248/observerlib-1.15.2-1.2.0.v60.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 697129792, - "type": 0 - }, - { - "foldername": "hellfirepvp", - "fingerprint": 1405202566, - "type": 0 - }, - { - "foldername": "javascript", - "fingerprint": 2500950056, - "type": 0 - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 2246455818, - "type": 0 - } - ], - "packageFingerprint": 791305141, - "gameVersion": [ - "1.15.2" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "observerlib-1.15.2-1.2.0.v60.jar" - }, - "dateInstalled": "2020-08-01T19:17:16.0211477Z", - "dateUpdated": "2020-08-01T19:17:16.02315Z", - "dateLastUpdateAttempted": "2020-08-01T19:17:16.02315Z", - "status": 5, - "preferenceAutoInstallUpdates": false, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, { "addonID": 242195, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", @@ -19583,37 +19327,104 @@ "installedTargets": null }, { - "addonID": 363065, + "addonID": 316833, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2893163, - "displayName": "stonecatalysts-1.15.2-1.2.0.jar", - "fileName": "stonecatalysts-1.15.2-1.2.0.jar", - "fileDate": "2020-03-02T10:15:44.323Z", - "fileLength": 207348, + "id": 3008248, + "displayName": "ObserverLib-1.15.2-1.2.0.jar", + "fileName": "observerlib-1.15.2-1.2.0.v60.jar", + "fileDate": "2020-07-18T14:57:05.08Z", + "fileLength": 136840, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2893/163/stonecatalysts-1.15.2-1.2.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3008/248/observerlib-1.15.2-1.2.0.v60.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 238222, - "type": 2, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1996749818, + "fingerprint": 697129792, "type": 0 }, { - "foldername": "network", - "fingerprint": 617705091, + "foldername": "hellfirepvp", + "fingerprint": 1405202566, + "type": 0 + }, + { + "foldername": "javascript", + "fingerprint": 2500950056, + "type": 0 + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 2246455818, + "type": 0 + } + ], + "packageFingerprint": 791305141, + "gameVersion": [ + "1.15.2" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "observerlib-1.15.2-1.2.0.v60.jar" + }, + "dateInstalled": "2020-08-01T19:17:16.0211477Z", + "dateUpdated": "2020-08-01T19:17:16.02315Z", + "dateLastUpdateAttempted": "2020-08-01T19:17:16.02315Z", + "status": 5, + "preferenceAutoInstallUpdates": false, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, + { + "addonID": 363065, + "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", + "installedFile": { + "id": 2893163, + "displayName": "stonecatalysts-1.15.2-1.2.0.jar", + "fileName": "stonecatalysts-1.15.2-1.2.0.jar", + "fileDate": "2020-03-02T10:15:44.323Z", + "fileLength": 207348, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/2893/163/stonecatalysts-1.15.2-1.2.0.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ + { + "id": 0, + "addonId": 238222, + "type": 2, + "fileId": 0 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 1996749818, + "type": 0 + }, + { + "foldername": "network", + "fingerprint": 617705091, "type": 0 }, { @@ -20191,6 +20002,78 @@ "manifestName": null, "installedTargets": null }, + { + "addonID": 351948, + "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", + "installedFile": { + "id": 2912824, + "displayName": "Mining Helmet 1.15.2-v1.0.8", + "fileName": "mining-helmet-1.15.2-1.0.8.jar", + "fileDate": "2020-03-26T00:02:58.673Z", + "fileLength": 34303, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/2912/824/mining-helmet-1.15.2-1.0.8.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 214238143, + "type": 0 + }, + { + "foldername": "com", + "fingerprint": 2991367495, + "type": 0 + }, + { + "foldername": "assets", + "fingerprint": 258773674, + "type": 0 + }, + { + "foldername": "data", + "fingerprint": 3140047221, + "type": 0 + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 4253522632, + "type": 0 + } + ], + "packageFingerprint": 122181231, + "gameVersion": [ + "1.15.2" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2020-01-22T00:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "mining-helmet-1.15.2-1.0.8.jar" + }, + "dateInstalled": "2020-07-05T20:35:10.6034753Z", + "dateUpdated": "2020-07-05T20:35:10.8518107Z", + "dateLastUpdateAttempted": "2020-07-05T20:35:10.8518107Z", + "status": 5, + "preferenceAutoInstallUpdates": false, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, { "addonID": 271740, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", @@ -20266,50 +20149,58 @@ "installedTargets": null }, { - "addonID": 351948, + "addonID": 250577, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2912824, - "displayName": "Mining Helmet 1.15.2-v1.0.8", - "fileName": "mining-helmet-1.15.2-1.0.8.jar", - "fileDate": "2020-03-26T00:02:58.673Z", - "fileLength": 34303, + "id": 2936509, + "displayName": "AkashicTome-1.3-13.jar", + "fileName": "AkashicTome-1.3-13.jar", + "fileDate": "2020-04-21T12:17:52.893Z", + "fileLength": 39737, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2912/824/mining-helmet-1.15.2-1.0.8.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2936/509/AkashicTome-1.3-13.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 250363, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 214238143, + "fingerprint": 4187856036, "type": 0 }, { - "foldername": "com", - "fingerprint": 2991367495, + "foldername": "vazkii", + "fingerprint": 122177015, "type": 0 }, { "foldername": "assets", - "fingerprint": 258773674, + "fingerprint": 19176750, "type": 0 }, { "foldername": "data", - "fingerprint": 3140047221, + "fingerprint": 1646269815, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 4253522632, + "fingerprint": 3481267785, "type": 0 } ], - "packageFingerprint": 122181231, + "packageFingerprint": 4134879910, "gameVersion": [ + "Forge", "1.15.2" ], "hasInstallScript": false, @@ -20318,14 +20209,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2020-01-22T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "mining-helmet-1.15.2-1.0.8.jar" + "FileNameOnDisk": "AkashicTome-1.3-13.jar" }, - "dateInstalled": "2020-07-05T20:35:10.6034753Z", - "dateUpdated": "2020-07-05T20:35:10.8518107Z", - "dateLastUpdateAttempted": "2020-07-05T20:35:10.8518107Z", + "dateInstalled": "2020-04-23T18:01:56.548777Z", + "dateUpdated": "2020-04-23T18:01:56.6805915Z", + "dateLastUpdateAttempted": "2020-04-23T18:01:56.6805915Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -20457,23 +20348,23 @@ "installedTargets": null }, { - "addonID": 250577, + "addonID": 272302, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2936509, - "displayName": "AkashicTome-1.3-13.jar", - "fileName": "AkashicTome-1.3-13.jar", - "fileDate": "2020-04-21T12:17:52.893Z", - "fileLength": 39737, + "id": 3005715, + "displayName": "Refined Storage Addons 0.6.3", + "fileName": "refinedstorageaddons-0.6.3.jar", + "fileDate": "2020-07-15T17:14:20.21Z", + "fileLength": 28802, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2936/509/AkashicTome-1.3-13.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3005/715/refinedstorageaddons-0.6.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 250363, + "addonId": 243076, "type": 3, "fileId": 0 } @@ -20482,31 +20373,31 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4187856036, + "fingerprint": 1492893546, "type": 0 }, { - "foldername": "vazkii", - "fingerprint": 122177015, + "foldername": "com", + "fingerprint": 4231172936, "type": 0 }, { "foldername": "assets", - "fingerprint": 19176750, + "fingerprint": 1327761641, "type": 0 }, { "foldername": "data", - "fingerprint": 1646269815, + "fingerprint": 3871752191, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 3481267785, + "fingerprint": 3161986055, "type": 0 } ], - "packageFingerprint": 4134879910, + "packageFingerprint": 2000841567, "gameVersion": [ "Forge", "1.15.2" @@ -20520,11 +20411,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "AkashicTome-1.3-13.jar" + "FileNameOnDisk": "refinedstorageaddons-0.6.3.jar" }, - "dateInstalled": "2020-04-23T18:01:56.548777Z", - "dateUpdated": "2020-04-23T18:01:56.6805915Z", - "dateLastUpdateAttempted": "2020-04-23T18:01:56.6805915Z", + "dateInstalled": "2020-01-31T20:26:05.1578323Z", + "dateUpdated": "2020-07-15T19:39:05.1425069Z", + "dateLastUpdateAttempted": "2020-07-15T19:39:05.1425069Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -20537,102 +20428,22 @@ "installedTargets": null }, { - "addonID": 272302, + "addonID": 287342, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3005715, - "displayName": "Refined Storage Addons 0.6.3", - "fileName": "refinedstorageaddons-0.6.3.jar", - "fileDate": "2020-07-15T17:14:20.21Z", - "fileLength": 28802, - "releaseType": 1, + "id": 2980252, + "displayName": "titanium-1.15.2-2.4.2.jar", + "fileName": "titanium-1.15.2-2.4.2.jar", + "fileDate": "2020-06-14T19:15:15.267Z", + "fileLength": 546613, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3005/715/refinedstorageaddons-0.6.3.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2980/252/titanium-1.15.2-2.4.2.jar", "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 243076, - "type": 3, - "fileId": 0 - } - ], - "isAvailable": true, - "modules": [ - { - "foldername": "META-INF", - "fingerprint": 1492893546, - "type": 0 - }, - { - "foldername": "com", - "fingerprint": 4231172936, - "type": 0 - }, - { - "foldername": "assets", - "fingerprint": 1327761641, - "type": 0 - }, - { - "foldername": "data", - "fingerprint": 3871752191, - "type": 0 - }, - { - "foldername": "pack.mcmeta", - "fingerprint": 3161986055, - "type": 0 - } - ], - "packageFingerprint": 2000841567, - "gameVersion": [ - "Forge", - "1.15.2" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "refinedstorageaddons-0.6.3.jar" - }, - "dateInstalled": "2020-01-31T20:26:05.1578323Z", - "dateUpdated": "2020-07-15T19:39:05.1425069Z", - "dateLastUpdateAttempted": "2020-07-15T19:39:05.1425069Z", - "status": 5, - "preferenceAutoInstallUpdates": false, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 287342, - "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", - "installedFile": { - "id": 2980252, - "displayName": "titanium-1.15.2-2.4.2.jar", - "fileName": "titanium-1.15.2-2.4.2.jar", - "fileDate": "2020-06-14T19:15:15.267Z", - "fileLength": 546613, - "releaseType": 2, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2980/252/titanium-1.15.2-2.4.2.jar", - "isAlternate": false, - "alternateFileId": 2980253, - "dependencies": [], - "isAvailable": true, - "modules": [ + "alternateFileId": 2980253, + "dependencies": [], + "isAvailable": true, + "modules": [ { "foldername": "META-INF", "fingerprint": 4052192916, @@ -21042,71 +20853,39 @@ "installedTargets": null }, { - "addonID": 316873, + "addonID": 256717, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2880784, - "displayName": "curioofundying-FORGE-1.15.2-3.0.jar", - "fileName": "curioofundying-FORGE-1.15.2-3.0.jar", - "fileDate": "2020-02-13T07:40:38.56Z", - "fileLength": 26321, + "id": 3041924, + "displayName": "Clumps-5.0.2.6.jar", + "fileName": "Clumps-5.0.2.6.jar", + "fileDate": "2020-08-25T15:20:54.173Z", + "fileLength": 13313, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2880/784/curioofundying-FORGE-1.15.2-3.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3041/924/Clumps-5.0.2.6.jar", "isAlternate": false, - "alternateFileId": 2880785, - "dependencies": [ - { - "id": 0, - "addonId": 309927, - "type": 3, - "fileId": 0 - } - ], + "alternateFileId": 3041925, + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 2194353379, - "type": 0 - }, - { - "foldername": "top", - "fingerprint": 2083467830, - "type": 0 - }, - { - "foldername": "CHANGELOG.md", - "fingerprint": 1426454620, - "type": 0 - }, - { - "foldername": "curioofundying_icon.png", - "fingerprint": 871239941, - "type": 0 - }, - { - "foldername": "data", - "fingerprint": 2806061578, + "fingerprint": 1250379429, "type": 0 }, { - "foldername": "licenses", - "fingerprint": 520874550, + "foldername": "com", + "fingerprint": 1085893994, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 391677537, - "type": 0 - }, - { - "foldername": "README.md", - "fingerprint": 3907935422, + "fingerprint": 4178614280, "type": 0 } ], - "packageFingerprint": 3904465126, + "packageFingerprint": 1584814646, "gameVersion": [ "Forge", "1.15.2" @@ -21120,11 +20899,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "curioofundying-FORGE-1.15.2-3.0.jar" + "FileNameOnDisk": "Clumps-5.0.2.6.jar" }, - "dateInstalled": "2020-02-13T19:33:13.0240236Z", - "dateUpdated": "2020-02-13T19:33:13.1320157Z", - "dateLastUpdateAttempted": "2020-02-13T19:33:13.1320157Z", + "dateInstalled": "2020-07-12T21:56:56.7585127Z", + "dateUpdated": "2020-08-26T18:54:29.1269159Z", + "dateLastUpdateAttempted": "2020-08-26T18:54:29.1269159Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -21221,114 +21000,71 @@ "installedTargets": null }, { - "addonID": 256717, + "addonID": 316873, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3041924, - "displayName": "Clumps-5.0.2.6.jar", - "fileName": "Clumps-5.0.2.6.jar", - "fileDate": "2020-08-25T15:20:54.173Z", - "fileLength": 13313, + "id": 2880784, + "displayName": "curioofundying-FORGE-1.15.2-3.0.jar", + "fileName": "curioofundying-FORGE-1.15.2-3.0.jar", + "fileDate": "2020-02-13T07:40:38.56Z", + "fileLength": 26321, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3041/924/Clumps-5.0.2.6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2880/784/curioofundying-FORGE-1.15.2-3.0.jar", "isAlternate": false, - "alternateFileId": 3041925, - "dependencies": [], + "alternateFileId": 2880785, + "dependencies": [ + { + "id": 0, + "addonId": 309927, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1250379429, + "fingerprint": 2194353379, "type": 0 }, { - "foldername": "com", - "fingerprint": 1085893994, + "foldername": "top", + "fingerprint": 2083467830, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 4178614280, + "foldername": "CHANGELOG.md", + "fingerprint": 1426454620, "type": 0 - } - ], - "packageFingerprint": 1584814646, - "gameVersion": [ - "Forge", - "1.15.2" - ], - "hasInstallScript": false, - "isCompatibleWithClient": false, - "categorySectionPackageType": 0, - "restrictProjectFileAccess": 0, - "projectStatus": 0, - "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", - "gameId": 0, - "isServerPack": false, - "FileNameOnDisk": "Clumps-5.0.2.6.jar" - }, - "dateInstalled": "2020-07-12T21:56:56.7585127Z", - "dateUpdated": "2020-08-26T18:54:29.1269159Z", - "dateLastUpdateAttempted": "2020-08-26T18:54:29.1269159Z", - "status": 5, - "preferenceAutoInstallUpdates": false, - "preferenceAlternateFile": false, - "preferenceIsIgnored": false, - "isModified": false, - "isWorkingCopy": false, - "isFuzzyMatch": false, - "preferenceReleaseType": null, - "manifestName": null, - "installedTargets": null - }, - { - "addonID": 314093, - "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", - "installedFile": { - "id": 2969303, - "displayName": "whoops-1.15.2-0.0.1.3.jar", - "fileName": "whoops-1.15.2-0.0.1.3.jar", - "fileDate": "2020-05-31T04:17:29.99Z", - "fileLength": 29544, - "releaseType": 1, - "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2969/303/whoops-1.15.2-0.0.1.3.jar", - "isAlternate": false, - "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 225643, - "type": 3, - "fileId": 0 - } - ], - "isAvailable": true, - "modules": [ + }, { - "foldername": "META-INF", - "fingerprint": 324196010, + "foldername": "curioofundying_icon.png", + "fingerprint": 871239941, "type": 0 }, { - "foldername": "noobanidus", - "fingerprint": 3069214470, + "foldername": "data", + "fingerprint": 2806061578, "type": 0 }, { - "foldername": "assets", - "fingerprint": 3500852102, + "foldername": "licenses", + "fingerprint": 520874550, "type": 0 }, { "foldername": "pack.mcmeta", - "fingerprint": 2517860023, + "fingerprint": 391677537, + "type": 0 + }, + { + "foldername": "README.md", + "fingerprint": 3907935422, "type": 0 } ], - "packageFingerprint": 1304413506, + "packageFingerprint": 3904465126, "gameVersion": [ "Forge", "1.15.2" @@ -21339,14 +21075,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "whoops-1.15.2-0.0.1.3.jar" + "FileNameOnDisk": "curioofundying-FORGE-1.15.2-3.0.jar" }, - "dateInstalled": "2020-04-16T18:05:49.2002787Z", - "dateUpdated": "2020-05-31T09:15:31.027786Z", - "dateLastUpdateAttempted": "2020-05-31T09:15:31.027786Z", + "dateInstalled": "2020-02-13T19:33:13.0240236Z", + "dateUpdated": "2020-02-13T19:33:13.1320157Z", + "dateLastUpdateAttempted": "2020-02-13T19:33:13.1320157Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -21460,6 +21196,81 @@ "manifestName": null, "installedTargets": null }, + { + "addonID": 314093, + "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", + "installedFile": { + "id": 2969303, + "displayName": "whoops-1.15.2-0.0.1.3.jar", + "fileName": "whoops-1.15.2-0.0.1.3.jar", + "fileDate": "2020-05-31T04:17:29.99Z", + "fileLength": 29544, + "releaseType": 1, + "fileStatus": 4, + "downloadUrl": "https://edge.forgecdn.net/files/2969/303/whoops-1.15.2-0.0.1.3.jar", + "isAlternate": false, + "alternateFileId": 0, + "dependencies": [ + { + "id": 0, + "addonId": 225643, + "type": 3, + "fileId": 0 + } + ], + "isAvailable": true, + "modules": [ + { + "foldername": "META-INF", + "fingerprint": 324196010, + "type": 0 + }, + { + "foldername": "noobanidus", + "fingerprint": 3069214470, + "type": 0 + }, + { + "foldername": "assets", + "fingerprint": 3500852102, + "type": 0 + }, + { + "foldername": "pack.mcmeta", + "fingerprint": 2517860023, + "type": 0 + } + ], + "packageFingerprint": 1304413506, + "gameVersion": [ + "Forge", + "1.15.2" + ], + "hasInstallScript": false, + "isCompatibleWithClient": false, + "categorySectionPackageType": 0, + "restrictProjectFileAccess": 0, + "projectStatus": 0, + "projectId": 0, + "gameVersionDateReleased": "2019-08-01T00:00:00Z", + "gameId": 0, + "isServerPack": false, + "FileNameOnDisk": "whoops-1.15.2-0.0.1.3.jar" + }, + "dateInstalled": "2020-04-16T18:05:49.2002787Z", + "dateUpdated": "2020-05-31T09:15:31.027786Z", + "dateLastUpdateAttempted": "2020-05-31T09:15:31.027786Z", + "status": 5, + "preferenceAutoInstallUpdates": false, + "preferenceAlternateFile": false, + "preferenceIsIgnored": false, + "isModified": false, + "isWorkingCopy": false, + "isFuzzyMatch": false, + "preferenceReleaseType": null, + "manifestName": null, + "installedTargets": null + }, { "addonID": 318551, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", @@ -21974,71 +21785,45 @@ "installedTargets": null }, { - "addonID": 383182, + "addonID": 235577, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2956029, - "displayName": "XNetGases-1.15.2-1.0.0.jar", - "fileName": "XNetGases-1.15.2-1.0.0.jar", - "fileDate": "2020-05-13T18:43:07.127Z", - "fileLength": 139878, - "releaseType": 1, + "id": 2873613, + "displayName": "TrashSlot_1.15.2-11.0.0.jar", + "fileName": "TrashSlot_1.15.2-11.0.0.jar", + "fileDate": "2020-02-02T09:15:42.473Z", + "fileLength": 60755, + "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2956/29/XNetGases-1.15.2-1.0.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2873/613/TrashSlot_1.15.2-11.0.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [ - { - "id": 0, - "addonId": 326041, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 268560, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 260912, - "type": 3, - "fileId": 0 - }, - { - "id": 0, - "addonId": 233105, - "type": 3, - "fileId": 0 - } - ], + "dependencies": [], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 3186711685, + "fingerprint": 4246659184, "type": 0 }, { - "foldername": "terrails", - "fingerprint": 1582317102, + "foldername": "net", + "fingerprint": 1959376298, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 1646317105, + "foldername": "assets", + "fingerprint": 989420890, "type": 0 }, { - "foldername": "xnetgases.png", - "fingerprint": 224484208, + "foldername": "pack.mcmeta", + "fingerprint": 3514838989, "type": 0 } ], - "packageFingerprint": 3797195481, + "packageFingerprint": 787886344, "gameVersion": [ - "Forge", "1.15.2" ], "hasInstallScript": false, @@ -22047,14 +21832,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2008-03-01T06:00:00Z", + "gameVersionDateReleased": "2020-01-22T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "XNetGases-1.15.2-1.0.0.jar" + "FileNameOnDisk": "TrashSlot_1.15.2-11.0.0.jar" }, - "dateInstalled": "2020-05-14T17:36:59.8689747Z", - "dateUpdated": "2020-05-14T17:36:59.8689747Z", - "dateLastUpdateAttempted": "2020-05-14T17:36:59.8689747Z", + "dateInstalled": "2020-02-02T19:16:54.7180056Z", + "dateUpdated": "2020-02-02T19:16:54.7200209Z", + "dateLastUpdateAttempted": "2020-02-02T19:16:54.7200209Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -22134,45 +21919,71 @@ "installedTargets": null }, { - "addonID": 235577, + "addonID": 383182, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2873613, - "displayName": "TrashSlot_1.15.2-11.0.0.jar", - "fileName": "TrashSlot_1.15.2-11.0.0.jar", - "fileDate": "2020-02-02T09:15:42.473Z", - "fileLength": 60755, - "releaseType": 2, + "id": 2956029, + "displayName": "XNetGases-1.15.2-1.0.0.jar", + "fileName": "XNetGases-1.15.2-1.0.0.jar", + "fileDate": "2020-05-13T18:43:07.127Z", + "fileLength": 139878, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2873/613/TrashSlot_1.15.2-11.0.0.jar", + "downloadUrl": "https://edge.forgecdn.net/files/2956/29/XNetGases-1.15.2-1.0.0.jar", "isAlternate": false, "alternateFileId": 0, - "dependencies": [], + "dependencies": [ + { + "id": 0, + "addonId": 326041, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 268560, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 260912, + "type": 3, + "fileId": 0 + }, + { + "id": 0, + "addonId": 233105, + "type": 3, + "fileId": 0 + } + ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 4246659184, + "fingerprint": 3186711685, "type": 0 }, { - "foldername": "net", - "fingerprint": 1959376298, + "foldername": "terrails", + "fingerprint": 1582317102, "type": 0 }, { - "foldername": "assets", - "fingerprint": 989420890, + "foldername": "pack.mcmeta", + "fingerprint": 1646317105, "type": 0 }, { - "foldername": "pack.mcmeta", - "fingerprint": 3514838989, + "foldername": "xnetgases.png", + "fingerprint": 224484208, "type": 0 } ], - "packageFingerprint": 787886344, + "packageFingerprint": 3797195481, "gameVersion": [ + "Forge", "1.15.2" ], "hasInstallScript": false, @@ -22181,14 +21992,14 @@ "restrictProjectFileAccess": 0, "projectStatus": 0, "projectId": 0, - "gameVersionDateReleased": "2020-01-22T00:00:00Z", + "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "TrashSlot_1.15.2-11.0.0.jar" + "FileNameOnDisk": "XNetGases-1.15.2-1.0.0.jar" }, - "dateInstalled": "2020-02-02T19:16:54.7180056Z", - "dateUpdated": "2020-02-02T19:16:54.7200209Z", - "dateLastUpdateAttempted": "2020-02-02T19:16:54.7200209Z", + "dateInstalled": "2020-05-14T17:36:59.8689747Z", + "dateUpdated": "2020-05-14T17:36:59.8689747Z", + "dateLastUpdateAttempted": "2020-05-14T17:36:59.8689747Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, From a4433f17daecc2e2bf7eb495ae3832011ba68a53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 14 Sep 2020 22:15:24 +0200 Subject: [PATCH 22/39] Revert #489 temp fix, it didn't help --- config/terraforged/terraforged-generator.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/terraforged/terraforged-generator.json b/config/terraforged/terraforged-generator.json index 6b44366..6c06c0d 100644 --- a/config/terraforged/terraforged-generator.json +++ b/config/terraforged/terraforged-generator.json @@ -87,7 +87,7 @@ "value": "true" }, "customBiomeFeatures": { - "value": "false" + "value": "true" } } }, From 0f0a2e203e650e68828b334b693b037f6ec24727 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Mon, 14 Sep 2020 22:29:51 +0200 Subject: [PATCH 23/39] removed console.logs --- kubejs/data/enigmatica/kubejs/base/unification/additions.js | 2 -- kubejs/data/enigmatica/kubejs/base/unification/unify_tags.js | 2 -- 2 files changed, 4 deletions(-) diff --git a/kubejs/data/enigmatica/kubejs/base/unification/additions.js b/kubejs/data/enigmatica/kubejs/base/unification/additions.js index b356221..c8e4759 100644 --- a/kubejs/data/enigmatica/kubejs/base/unification/additions.js +++ b/kubejs/data/enigmatica/kubejs/base/unification/additions.js @@ -1,10 +1,8 @@ //priority: 975 events.listen('recipes', function (event) { materialsToUnify.forEach(function (material) { - console.log('Unifying ' + material + '...'); enigmatica_ore_deposit_processing(event, material); immersiveengineering_gem_ore_processing(event, material); - //occultism_ore_ingot_crushing(event, material); }); }); diff --git a/kubejs/data/enigmatica/kubejs/base/unification/unify_tags.js b/kubejs/data/enigmatica/kubejs/base/unification/unify_tags.js index a024073..86c223d 100644 --- a/kubejs/data/enigmatica/kubejs/base/unification/unify_tags.js +++ b/kubejs/data/enigmatica/kubejs/base/unification/unify_tags.js @@ -7,8 +7,6 @@ events.listen('recipes', function (event) { var tag = ingredient.of(tagString); if (tag.stacks.size() > 1) { var prefItem = getPreferredItemInTag(tag); - // console.log('Tag: ' + tag); - // console.log('Prefered item: ' + prefItem); event.replaceOutput({}, tagString, prefItem.id); } } From b36e3f4dc53993fb09a1e51713093f7ca8e68982 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 15 Sep 2020 22:24:38 +0200 Subject: [PATCH 24/39] Knife unification, closes #492 --- kubejs/data/enigmatica/kubejs/base/recipes/replace_input.js | 3 +++ kubejs/data/enigmatica/kubejs/base/tags/items/forge/tools.js | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 kubejs/data/enigmatica/kubejs/base/tags/items/forge/tools.js diff --git a/kubejs/data/enigmatica/kubejs/base/recipes/replace_input.js b/kubejs/data/enigmatica/kubejs/base/recipes/replace_input.js index 5b86f72..c4b0c07 100644 --- a/kubejs/data/enigmatica/kubejs/base/recipes/replace_input.js +++ b/kubejs/data/enigmatica/kubejs/base/recipes/replace_input.js @@ -70,6 +70,9 @@ events.listen('recipes', function (event) { event.replaceInput({}, 'thermal:apatite', '#forge:gems/apatite'); event.replaceInput({}, 'thermal:niter', '#forge:gems/niter'); + event.replaceInput({}, '#forge:fillet_knife', '#forge:tools/knife'); + event.replaceInput({}, '#farmersdelight:tools/knife', '#forge:tools/knife'); + event.replaceInput( { type: 'minecraft:crafting_shaped', output: 'minecraft:piston' }, '#forge:cobblestone', diff --git a/kubejs/data/enigmatica/kubejs/base/tags/items/forge/tools.js b/kubejs/data/enigmatica/kubejs/base/tags/items/forge/tools.js new file mode 100644 index 0000000..cc19dfd --- /dev/null +++ b/kubejs/data/enigmatica/kubejs/base/tags/items/forge/tools.js @@ -0,0 +1,5 @@ +events.listen('item.tags', function (event) { + event.get('forge:tools').add('#forge:fillet_knife'); + event.get('forge:tools/knife').add('#forge:fillet_knife'); + event.get('forge:fillet_knife').add('#farmersdelight:tools/knife'); +}); From aae341923646c1f7310a0df89a13db753ec5bac3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 15 Sep 2020 22:24:52 +0200 Subject: [PATCH 25/39] niter config --- config/emendatusenigmatica-common.toml | 12 ++++++------ config/jaopca/materials/potassium_nitrate.toml | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/config/emendatusenigmatica-common.toml b/config/emendatusenigmatica-common.toml index a470de0..f228087 100644 --- a/config/emendatusenigmatica-common.toml +++ b/config/emendatusenigmatica-common.toml @@ -370,16 +370,16 @@ ["Potassium Nitrate Ore"] #Activate/Deactivate the World Gen [Default: true] Active = true - #Configure the ore Vein Size [Default: 7] - #Range: 0 ~ 64 - Size = 6 - #Ores count per Chunk [Default: 3] - #Range: 0 ~ 64 - Count = 3 #Minimum Y-Level [Default: 0] #Range: 0 ~ 128 Minimum = 18 #Maximum Y-Level [Default: 24] #Range: 0 ~ 256 Maximum = 32 + #Configure the ore Vein Size [Default: 7] + #Range: 0 ~ 64 + Size = 6 + #Ores count per Chunk [Default: 3] + #Range: 0 ~ 64 + Count = 3 diff --git a/config/jaopca/materials/potassium_nitrate.toml b/config/jaopca/materials/potassium_nitrate.toml index 838b3a8..56dc9b8 100644 --- a/config/jaopca/materials/potassium_nitrate.toml +++ b/config/jaopca/materials/potassium_nitrate.toml @@ -1,15 +1,15 @@ [general] + #The module blacklist of this material. + moduleBlacklist = [] #The alternative names of this material. alternativeNames = [] #The byproducts of this material. extras = [] - #The module blacklist of this material. - moduleBlacklist = [] - #Should items of this material have the enchanted glow. - hasEffect = false #The model type of the material. modelType = "metallic" + #Should items of this material have the enchanted glow. + hasEffect = false [create] #The byproduct material to output in Create's crushing. From 2ba1336727600c85c98fb8af52a27d8a78cf1966 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 15 Sep 2020 22:55:34 +0200 Subject: [PATCH 26/39] Farmland recipe missing, fixes #493 --- .../kubejs/base/tags/items/forge/hoes.js | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 kubejs/data/enigmatica/kubejs/base/tags/items/forge/hoes.js diff --git a/kubejs/data/enigmatica/kubejs/base/tags/items/forge/hoes.js b/kubejs/data/enigmatica/kubejs/base/tags/items/forge/hoes.js new file mode 100644 index 0000000..35e4be9 --- /dev/null +++ b/kubejs/data/enigmatica/kubejs/base/tags/items/forge/hoes.js @@ -0,0 +1,26 @@ +events.listen('item.tags', function (event) { + var hoes = [ + 'minecraft:wooden_hoe', + 'minecraft:stone_hoe', + 'minecraft:iron_hoe', + 'minecraft:diamond_hoe', + 'minecraft:golden_hoe', + 'aquaculture:neptunium_hoe', + 'cyclic:crystal_hoe', + 'cyclic:emerald_hoe', + 'cyclic:sandstone_hoe', + 'cyclic:netherbrick_hoe', + 'immersiveengineering:hoe_steel', + 'mekanismtools:bronze_hoe', + 'mekanismtools:lapis_lazuli_hoe', + 'mekanismtools:osmium_hoe', + 'mekanismtools:refined_glowstone_hoe', + 'mekanismtools:refined_obsidian_hoe', + 'mekanismtools:steel_hoe', + 'naturesaura:infused_iron_hoe', + 'naturesaura:sky_hoe' + ]; + hoes.forEach(function (hoe) { + event.get('enigmatica:hoes').add(hoe); + }); +}); From b98561cdb75b85c11e3fe00cd9e65f0fdaaa6f62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 15 Sep 2020 22:55:42 +0200 Subject: [PATCH 27/39] added paxels to axe tag --- .../kubejs/base/tags/items/forge/axes.js | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 kubejs/data/enigmatica/kubejs/base/tags/items/forge/axes.js diff --git a/kubejs/data/enigmatica/kubejs/base/tags/items/forge/axes.js b/kubejs/data/enigmatica/kubejs/base/tags/items/forge/axes.js new file mode 100644 index 0000000..0b11ad0 --- /dev/null +++ b/kubejs/data/enigmatica/kubejs/base/tags/items/forge/axes.js @@ -0,0 +1,42 @@ +events.listen('item.tags', function (event) { + var axes = [ + 'mekanismtools:refined_glowstone_paxel', + 'mekanismtools:refined_obsidian_axe', + 'mekanismtools:refined_obsidian_paxel', + 'mekanismtools:steel_axe', + 'mekanismtools:steel_paxel', + 'naturesaura:infused_iron_axe', + 'naturesaura:sky_axe', + 'psi:psimetal_axe', + 'minecraft:iron_axe', + 'minecraft:wooden_axe', + 'minecraft:stone_axe', + 'minecraft:diamond_axe', + 'minecraft:golden_axe', + 'aquaculture:neptunium_axe', + 'astralsorcery:crystal_axe', + 'astralsorcery:infused_crystal_axe', + 'botania:manasteel_axe', + 'botania:elementium_axe', + 'cyclic:crystal_axe', + 'cyclic:emerald_axe', + 'cyclic:sandstone_axe', + 'cyclic:netherbrick_axe', + 'immersiveengineering:axe_steel', + 'mekanismtools:wood_paxel', + 'mekanismtools:stone_paxel', + 'mekanismtools:iron_paxel', + 'mekanismtools:diamond_paxel', + 'mekanismtools:gold_paxel', + 'mekanismtools:bronze_axe', + 'mekanismtools:bronze_paxel', + 'mekanismtools:lapis_lazuli_axe', + 'mekanismtools:lapis_lazuli_paxel', + 'mekanismtools:osmium_axe', + 'mekanismtools:osmium_paxel', + 'mekanismtools:refined_glowstone_axe' + ]; + axes.forEach(function (axe) { + event.get('enigmatica:axes').add(axe); + }); +}); From 22c91877372f76b4ee0abe4945fb5605da4e71d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 15 Sep 2020 22:57:12 +0200 Subject: [PATCH 28/39] #493 --- config/jaopca/main.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/jaopca/main.toml b/config/jaopca/main.toml index 943823a..54e5da6 100644 --- a/config/jaopca/main.toml +++ b/config/jaopca/main.toml @@ -58,7 +58,7 @@ #Configurations related to recipes. [recipes] #List of recipes that should not be added. - blacklist = ["jaopca:mekanism.material_to_dust.prismarine", "jaopca:occultism.material_to_dust.prismarine"] + blacklist = ["jaopca:mekanism.material_to_dust.prismarine", "jaopca:mekanism.material_to_gem.prismarine", "jaopca:occultism.material_to_dust.prismarine"] #Configurations related to loot tables. [lootTables] From 9c3466bf4bfbd7037e0afbdad414e07a67315dfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Tue, 15 Sep 2020 22:57:15 +0200 Subject: [PATCH 29/39] Update minecraftinstance.json --- minecraftinstance.json | 796 +++++++++++++++++++++++++++-------------- 1 file changed, 523 insertions(+), 273 deletions(-) diff --git a/minecraftinstance.json b/minecraftinstance.json index d1cda62..5e39e73 100644 --- a/minecraftinstance.json +++ b/minecraftinstance.json @@ -30,7 +30,7 @@ "isUnlocked": true, "javaArgsOverride": null, "javaDirOverride": null, - "lastPlayed": "2020-09-14T19:08:01.7114468Z", + "lastPlayed": "2020-09-15T18:48:24.8262641Z", "manifest": null, "fileDate": "0001-01-01T00:00:00", "installedModpack": null, @@ -1995,15 +1995,114 @@ }, { "folderName": "New World (7)", - "fingerprint": 0, - "fileDateHash": 1760781238, + "fingerprint": 1521348182, + "fileDateHash": 1276419960, "sectionID": 10, - "individualFingerprints": null, - "status": 4, - "timestamp": "2020-09-14T19:53:32.4368241Z", - "lastWriteTimeUtc": "2020-09-14T19:48:59.6429736Z", - "queryTimestamp": "0001-01-01T00:00:00", - "fileCount": 21, + "individualFingerprints": [ + 5903965, + 29425876, + 74311726, + 220349740, + 223657318, + 335183932, + 339853837, + 341673820, + 362580002, + 394507179, + 481121806, + 513901282, + 651942457, + 707517314, + 769737479, + 771550371, + 796812961, + 797016327, + 805596350, + 827373859, + 951040492, + 1086721577, + 1121602085, + 1156691497, + 1182732594, + 1254586642, + 1305173042, + 1318921553, + 1320537910, + 1326081694, + 1349007058, + 1367033121, + 1402897034, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1555873579, + 1636142237, + 1681925683, + 1722796223, + 1753484768, + 1777645178, + 1783675463, + 1831771499, + 1932224260, + 2027585755, + 2133734328, + 2144146657, + 2190884791, + 2226088383, + 2232013417, + 2252417181, + 2276199137, + 2287161386, + 2304864311, + 2331170389, + 2363716728, + 2372576555, + 2376233653, + 2438022517, + 2484092288, + 2502419821, + 2573305100, + 2575327331, + 2653844868, + 2702430682, + 2785010355, + 2837445219, + 2868986478, + 2887489200, + 3049160315, + 3145946506, + 3180419947, + 3233504788, + 3287613341, + 3362769045, + 3451579659, + 3491267928, + 3609404451, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3874577451, + 3894804303, + 3939916831, + 3961037842, + 4161228871, + 4242074383, + 4252451956 + ], + "status": 1, + "timestamp": "2020-09-14T20:57:48.6077735Z", + "lastWriteTimeUtc": "2020-09-14T19:56:38.52498Z", + "queryTimestamp": "2020-09-14T20:57:50.5967035Z", + "fileCount": 19, "fileSize": 0 }, { @@ -2875,7 +2974,7 @@ "status": 1, "timestamp": "2020-09-13T20:07:00.721612Z", "lastWriteTimeUtc": "2020-09-13T18:29:29.0456379Z", - "queryTimestamp": "2020-09-13T20:07:03.2905144Z", + "queryTimestamp": "2020-09-14T20:07:28.9356691Z", "fileCount": 1, "fileSize": 23836 }, @@ -3315,6 +3414,159 @@ "fileCount": 1, "fileSize": 299555 }, + { + "folderName": "New World (8)", + "fingerprint": 1947049544, + "fileDateHash": 3686688441, + "sectionID": 10, + "individualFingerprints": [ + 29425876, + 68802229, + 74311726, + 114005004, + 220349740, + 241316361, + 241316361, + 252420918, + 339853837, + 341673820, + 362580002, + 403899236, + 419688095, + 444244632, + 481121806, + 504656787, + 513901282, + 539912101, + 557583333, + 648252000, + 651942457, + 707517314, + 763558043, + 769737479, + 771550371, + 797016327, + 805596350, + 815273365, + 827373859, + 835159662, + 915690739, + 951040492, + 1037436254, + 1086721577, + 1128740188, + 1156691497, + 1182732594, + 1237542165, + 1254586642, + 1274562446, + 1289547773, + 1318921553, + 1320537910, + 1326081694, + 1329276785, + 1349007058, + 1358826259, + 1361848710, + 1367033121, + 1401455610, + 1402897034, + 1440945404, + 1470808285, + 1501345698, + 1502316123, + 1507732307, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1540447798, + 1596950589, + 1681925683, + 1698950002, + 1718569935, + 1722796223, + 1753484768, + 1755612453, + 1765206879, + 1777645178, + 1783675463, + 1831771499, + 1837747192, + 1850702489, + 1944616000, + 2003699970, + 2027585755, + 2133734328, + 2144146657, + 2168141551, + 2226088383, + 2232013417, + 2283750405, + 2290661205, + 2331170389, + 2348381908, + 2363716728, + 2372576555, + 2438022517, + 2489218879, + 2502419821, + 2509696179, + 2573305100, + 2653844868, + 2702430682, + 2753144493, + 2822075958, + 2868986478, + 2887489200, + 3049160315, + 3101885755, + 3138918235, + 3145946506, + 3183414419, + 3194442245, + 3250320899, + 3287613341, + 3451579659, + 3461448883, + 3483693454, + 3497303023, + 3533626746, + 3533626746, + 3533626746, + 3608929355, + 3643924002, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3771282984, + 3779001161, + 3794599010, + 3831463476, + 3831463476, + 3874577451, + 3894804303, + 3961037842, + 3994345198, + 3994345198, + 4044260679, + 4095122453, + 4095122453, + 4161228871, + 4171457008, + 4180252397, + 4192398683 + ], + "status": 1, + "timestamp": "2020-09-14T20:57:49.3079017Z", + "lastWriteTimeUtc": "2020-09-14T20:13:25.8832334Z", + "queryTimestamp": "2020-09-14T20:57:50.6356004Z", + "fileCount": 20, + "fileSize": 0 + }, { "folderName": "Ding-1.15.2-1.1.0.jar", "fingerprint": 1968274924, @@ -3892,7 +4144,7 @@ "status": 1, "timestamp": "2020-09-13T20:07:00.8512651Z", "lastWriteTimeUtc": "2020-09-12T21:58:43.0440078Z", - "queryTimestamp": "2020-09-13T20:07:03.3084662Z", + "queryTimestamp": "2020-09-14T20:07:28.957619Z", "fileCount": 21, "fileSize": 0 }, @@ -4303,7 +4555,7 @@ } ], "isValid": true, - "lastPreviousMatchUpdate": "2020-09-14T19:53:34.9648526Z", + "lastPreviousMatchUpdate": "2020-09-14T20:57:51.6869636Z", "isEnabled": true, "isPinned": false, "gameVersion": "1.15.2", @@ -4693,14 +4945,14 @@ "addonID": 290209, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3043252, - "displayName": "RFToolsPower - 1.15-2.2.4", - "fileName": "rftoolspower-1.15-2.2.4.jar", - "fileDate": "2020-08-27T04:36:58.947Z", - "fileLength": 559054, + "id": 3057524, + "displayName": "RFToolsPower - 1.15-2.2.5", + "fileName": "rftoolspower-1.15-2.2.5.jar", + "fileDate": "2020-09-15T05:10:15.35Z", + "fileLength": 566416, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3043/252/rftoolspower-1.15-2.2.4.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/524/rftoolspower-1.15-2.2.5.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -4718,13 +4970,13 @@ }, { "id": 0, - "addonId": 245211, + "addonId": 270789, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 270789, + "addonId": 245211, "type": 2, "fileId": 0 } @@ -4733,17 +4985,17 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3188373369, + "fingerprint": 3042450536, "type": 0 }, { "foldername": "mcjty", - "fingerprint": 3494319473, + "fingerprint": 2480091662, "type": 0 }, { "foldername": "assets", - "fingerprint": 591156924, + "fingerprint": 2151854769, "type": 0 }, { @@ -4753,11 +5005,11 @@ }, { "foldername": "data", - "fingerprint": 2908308535, + "fingerprint": 3818121324, "type": 0 } ], - "packageFingerprint": 2833144682, + "packageFingerprint": 539070205, "gameVersion": [ "Forge", "1.15.2" @@ -4771,12 +5023,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rftoolspower-1.15-2.2.4.jar" + "FileNameOnDisk": "rftoolspower-1.15-2.2.5.jar" }, "dateInstalled": "2020-02-23T10:55:56.3988675Z", - "dateUpdated": "2020-08-28T18:44:08.7779885Z", - "dateLastUpdateAttempted": "2020-08-28T18:44:08.7779885Z", - "status": 5, + "dateUpdated": "2020-09-15T18:37:08.7544615Z", + "dateLastUpdateAttempted": "2020-09-15T18:37:08.7544615Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -4954,14 +5206,14 @@ "addonID": 271835, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3054245, - "displayName": "thermal_cultivation-1.15.2-0.2.2b.jar", - "fileName": "thermal_cultivation-1.15.2-0.2.2b.jar", - "fileDate": "2020-09-11T03:35:09.777Z", - "fileLength": 180673, + "id": 3057456, + "displayName": "thermal_cultivation-1.15.2-0.2.4b.jar", + "fileName": "thermal_cultivation-1.15.2-0.2.4b.jar", + "fileDate": "2020-09-15T01:53:54.71Z", + "fileLength": 180677, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3054/245/thermal_cultivation-1.15.2-0.2.2b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/456/thermal_cultivation-1.15.2-0.2.4b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -4976,7 +5228,7 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3195531067, + "fingerprint": 3910773125, "type": 0 }, { @@ -5005,7 +5257,7 @@ "type": 0 } ], - "packageFingerprint": 796961753, + "packageFingerprint": 2396940463, "gameVersion": [ "Forge", "1.15.2" @@ -5019,12 +5271,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal_cultivation-1.15.2-0.2.2b.jar" + "FileNameOnDisk": "thermal_cultivation-1.15.2-0.2.4b.jar" }, "dateInstalled": "2020-09-08T11:11:26.354138Z", - "dateUpdated": "2020-09-11T18:22:11.3240948Z", - "dateLastUpdateAttempted": "2020-09-11T18:22:11.3240948Z", - "status": 5, + "dateUpdated": "2020-09-15T18:37:16.832053Z", + "dateLastUpdateAttempted": "2020-09-15T18:37:16.832053Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -6626,14 +6878,14 @@ "addonID": 222880, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3054939, - "displayName": "thermal-1.15.2-0.2.3b.jar", - "fileName": "thermal-1.15.2-0.2.3b.jar", - "fileDate": "2020-09-11T23:31:25.977Z", - "fileLength": 2585554, + "id": 3057541, + "displayName": "thermal-1.15.2-0.2.5b.jar", + "fileName": "thermal-1.15.2-0.2.5b.jar", + "fileDate": "2020-09-15T05:46:26.613Z", + "fileLength": 2625011, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3054/939/thermal-1.15.2-0.2.3b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/541/thermal-1.15.2-0.2.5b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -6648,22 +6900,22 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2008536181, + "fingerprint": 973994595, "type": 0 }, { "foldername": "cofh", - "fingerprint": 1140494959, + "fingerprint": 3897241508, "type": 0 }, { "foldername": "assets", - "fingerprint": 2589612391, + "fingerprint": 2712693048, "type": 0 }, { "foldername": "data", - "fingerprint": 2109234004, + "fingerprint": 4135612120, "type": 0 }, { @@ -6677,7 +6929,7 @@ "type": 0 } ], - "packageFingerprint": 2277925553, + "packageFingerprint": 1477704780, "gameVersion": [ "Forge", "1.15.2" @@ -6691,12 +6943,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal-1.15.2-0.2.3b.jar" + "FileNameOnDisk": "thermal-1.15.2-0.2.5b.jar" }, "dateInstalled": "2020-09-08T11:11:16.9576376Z", - "dateUpdated": "2020-09-12T07:47:01.8575471Z", - "dateLastUpdateAttempted": "2020-09-12T07:47:01.8575471Z", - "status": 5, + "dateUpdated": "2020-09-15T18:40:13.0693647Z", + "dateLastUpdateAttempted": "2020-09-15T18:40:13.0693647Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -7376,14 +7628,14 @@ "addonID": 69162, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3054242, - "displayName": "cofh_core-1.15.2-0.6.2b.jar", - "fileName": "cofh_core-1.15.2-0.6.2b.jar", - "fileDate": "2020-09-11T03:34:18.607Z", - "fileLength": 934838, + "id": 3057492, + "displayName": "cofh_core-1.15.2-0.6.4b.jar", + "fileName": "cofh_core-1.15.2-0.6.4b.jar", + "fileDate": "2020-09-15T03:11:13.36Z", + "fileLength": 941212, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3054/242/cofh_core-1.15.2-0.6.2b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/492/cofh_core-1.15.2-0.6.4b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -7398,17 +7650,17 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 313591652, + "fingerprint": 4272130730, "type": 0 }, { "foldername": "cofh", - "fingerprint": 3430821006, + "fingerprint": 2392516237, "type": 0 }, { "foldername": "assets", - "fingerprint": 931758811, + "fingerprint": 437231405, "type": 0 }, { @@ -7427,9 +7679,8 @@ "type": 0 } ], - "packageFingerprint": 1198793311, + "packageFingerprint": 2716707584, "gameVersion": [ - "Forge", "1.15.2" ], "hasInstallScript": false, @@ -7441,12 +7692,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "cofh_core-1.15.2-0.6.2b.jar" + "FileNameOnDisk": "cofh_core-1.15.2-0.6.4b.jar" }, "dateInstalled": "2020-02-15T19:19:47.8614063Z", - "dateUpdated": "2020-09-11T17:30:53.7401893Z", - "dateLastUpdateAttempted": "2020-09-11T17:30:53.7401893Z", - "status": 5, + "dateUpdated": "2020-09-15T18:32:29.9316715Z", + "dateLastUpdateAttempted": "2020-09-15T18:32:29.9316715Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -7545,14 +7796,14 @@ "addonID": 69163, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3054940, - "displayName": "thermal_expansion-1.15.2-0.2.3b.jar", - "fileName": "thermal_expansion-1.15.2-0.2.3b.jar", - "fileDate": "2020-09-11T23:31:48.417Z", - "fileLength": 642595, + "id": 3057570, + "displayName": "thermal_expansion-1.15.2-0.2.5b.jar", + "fileName": "thermal_expansion-1.15.2-0.2.5b.jar", + "fileDate": "2020-09-15T07:06:44.8Z", + "fileLength": 672907, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3054/940/thermal_expansion-1.15.2-0.2.3b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/570/thermal_expansion-1.15.2-0.2.5b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -7567,22 +7818,22 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 80145420, + "fingerprint": 1510762917, "type": 0 }, { "foldername": "cofh", - "fingerprint": 2104200980, + "fingerprint": 3082571566, "type": 0 }, { "foldername": "assets", - "fingerprint": 1429350999, + "fingerprint": 780275171, "type": 0 }, { "foldername": "data", - "fingerprint": 4188728413, + "fingerprint": 1831242099, "type": 0 }, { @@ -7596,7 +7847,7 @@ "type": 0 } ], - "packageFingerprint": 788838119, + "packageFingerprint": 2837275031, "gameVersion": [ "Forge", "1.15.2" @@ -7610,12 +7861,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal_expansion-1.15.2-0.2.3b.jar" + "FileNameOnDisk": "thermal_expansion-1.15.2-0.2.5b.jar" }, "dateInstalled": "2020-09-08T11:11:17.7185877Z", - "dateUpdated": "2020-09-12T07:46:36.322589Z", - "dateLastUpdateAttempted": "2020-09-12T07:46:36.322589Z", - "status": 5, + "dateUpdated": "2020-09-15T18:37:18.4048171Z", + "dateLastUpdateAttempted": "2020-09-15T18:37:18.4048171Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -8619,21 +8870,21 @@ "addonID": 347706, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3043249, - "displayName": "RFToolsBuilder - 1.15-2.1.8", - "fileName": "rftoolsbuilder-1.15-2.1.8.jar", - "fileDate": "2020-08-27T04:36:37.453Z", - "fileLength": 504006, + "id": 3057525, + "displayName": "RFToolsBuilder - 1.15-2.1.9", + "fileName": "rftoolsbuilder-1.15-2.1.9.jar", + "fileDate": "2020-09-15T05:11:53.27Z", + "fileLength": 505451, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3043/249/rftoolsbuilder-1.15-2.1.8.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/525/rftoolsbuilder-1.15-2.1.9.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 326041, - "type": 3, + "addonId": 245211, + "type": 2, "fileId": 0 }, { @@ -8644,8 +8895,8 @@ }, { "id": 0, - "addonId": 245211, - "type": 2, + "addonId": 326041, + "type": 3, "fileId": 0 }, { @@ -8659,17 +8910,17 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2340860006, + "fingerprint": 3698863243, "type": 0 }, { "foldername": "mcjty", - "fingerprint": 335915388, + "fingerprint": 1697237577, "type": 0 }, { "foldername": "assets", - "fingerprint": 187893744, + "fingerprint": 896337221, "type": 0 }, { @@ -8679,11 +8930,11 @@ }, { "foldername": "data", - "fingerprint": 1048028100, + "fingerprint": 598690197, "type": 0 } ], - "packageFingerprint": 1040954630, + "packageFingerprint": 1797609927, "gameVersion": [ "Forge", "1.15.2" @@ -8697,12 +8948,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rftoolsbuilder-1.15-2.1.8.jar" + "FileNameOnDisk": "rftoolsbuilder-1.15-2.1.9.jar" }, "dateInstalled": "2020-03-28T09:44:06.1522287Z", - "dateUpdated": "2020-08-28T17:41:25.3552926Z", - "dateLastUpdateAttempted": "2020-08-28T17:41:25.3552926Z", - "status": 5, + "dateUpdated": "2020-09-15T18:35:28.9431815Z", + "dateLastUpdateAttempted": "2020-09-15T18:35:28.9431815Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -10765,14 +11016,14 @@ "addonID": 326041, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3043248, - "displayName": "RFToolsBase - 1.15-1.1.6", - "fileName": "rftoolsbase-1.15-1.1.6.jar", - "fileDate": "2020-08-27T04:36:27.503Z", - "fileLength": 380255, + "id": 3057520, + "displayName": "RFToolsBase - 1.15-1.1.7", + "fileName": "rftoolsbase-1.15-1.1.7.jar", + "fileDate": "2020-09-15T05:02:30.35Z", + "fileLength": 383113, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3043/248/rftoolsbase-1.15-1.1.6.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/520/rftoolsbase-1.15-1.1.7.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -10799,17 +11050,17 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3974072535, + "fingerprint": 3323816389, "type": 0 }, { "foldername": "mcjty", - "fingerprint": 3100505562, + "fingerprint": 2854463378, "type": 0 }, { "foldername": "assets", - "fingerprint": 557849045, + "fingerprint": 801321581, "type": 0 }, { @@ -10819,11 +11070,11 @@ }, { "foldername": "data", - "fingerprint": 3014404705, + "fingerprint": 3446735189, "type": 0 } ], - "packageFingerprint": 446037566, + "packageFingerprint": 795876915, "gameVersion": [ "Forge", "1.15.2" @@ -10837,12 +11088,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rftoolsbase-1.15-1.1.6.jar" + "FileNameOnDisk": "rftoolsbase-1.15-1.1.7.jar" }, "dateInstalled": "2020-03-28T09:44:06.1631602Z", - "dateUpdated": "2020-08-28T17:41:23.7805163Z", - "dateLastUpdateAttempted": "2020-08-28T17:41:23.7805163Z", - "status": 5, + "dateUpdated": "2020-09-15T18:35:26.6352914Z", + "dateLastUpdateAttempted": "2020-09-15T18:35:26.6352914Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -11507,39 +11758,39 @@ "addonID": 350006, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3043253, - "displayName": "RFToolsStorage - 1.15-1.1.9", - "fileName": "rftoolsstorage-1.15-1.1.9.jar", - "fileDate": "2020-08-27T04:37:09.55Z", - "fileLength": 341796, + "id": 3057526, + "displayName": "RFToolsStorage - 1.15-1.1.10", + "fileName": "rftoolsstorage-1.15-1.1.10.jar", + "fileDate": "2020-09-15T05:12:18.393Z", + "fileLength": 341236, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3043/253/rftoolsstorage-1.15-1.1.9.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/526/rftoolsstorage-1.15-1.1.10.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 270789, - "type": 2, + "addonId": 326041, + "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 245211, - "type": 2, + "addonId": 233105, + "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 233105, - "type": 3, + "addonId": 270789, + "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 326041, - "type": 3, + "addonId": 245211, + "type": 2, "fileId": 0 } ], @@ -11547,17 +11798,17 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 360069892, + "fingerprint": 3306000678, "type": 0 }, { "foldername": "mcjty", - "fingerprint": 531280346, + "fingerprint": 1580056203, "type": 0 }, { "foldername": "assets", - "fingerprint": 3484654681, + "fingerprint": 3851892219, "type": 0 }, { @@ -11567,11 +11818,11 @@ }, { "foldername": "data", - "fingerprint": 544261852, + "fingerprint": 3473661348, "type": 0 } ], - "packageFingerprint": 301778956, + "packageFingerprint": 1378326434, "gameVersion": [ "Forge", "1.15.2" @@ -11585,12 +11836,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rftoolsstorage-1.15-1.1.9.jar" + "FileNameOnDisk": "rftoolsstorage-1.15-1.1.10.jar" }, "dateInstalled": "2020-03-28T09:44:06.1652067Z", - "dateUpdated": "2020-08-28T18:44:06.717867Z", - "dateLastUpdateAttempted": "2020-08-28T18:44:06.717867Z", - "status": 5, + "dateUpdated": "2020-09-15T18:37:09.9615167Z", + "dateLastUpdateAttempted": "2020-09-15T18:37:09.9615167Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -12358,33 +12609,33 @@ "addonID": 260912, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3043247, - "displayName": "XNet - 1.15-2.1.10", - "fileName": "xnet-1.15-2.1.10.jar", - "fileDate": "2020-08-27T04:36:17.253Z", - "fileLength": 538188, + "id": 3057530, + "displayName": "XNet - 1.15-2.1.11", + "fileName": "xnet-1.15-2.1.11.jar", + "fileDate": "2020-09-15T05:15:45.317Z", + "fileLength": 542250, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3043/247/xnet-1.15-2.1.10.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/530/xnet-1.15-2.1.11.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 326041, - "type": 3, + "addonId": 245211, + "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 245211, + "addonId": 270789, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 270789, - "type": 2, + "addonId": 326041, + "type": 3, "fileId": 0 }, { @@ -12398,12 +12649,12 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3978565551, + "fingerprint": 2181534421, "type": 0 }, { "foldername": "mcjty", - "fingerprint": 315799976, + "fingerprint": 4233929114, "type": 0 }, { @@ -12413,7 +12664,7 @@ }, { "foldername": "assets", - "fingerprint": 1812619454, + "fingerprint": 672943269, "type": 0 }, { @@ -12423,11 +12674,11 @@ }, { "foldername": "data", - "fingerprint": 3598627523, + "fingerprint": 3026290813, "type": 0 } ], - "packageFingerprint": 195632675, + "packageFingerprint": 3616884748, "gameVersion": [ "Forge", "1.15.2" @@ -12441,12 +12692,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "xnet-1.15-2.1.10.jar" + "FileNameOnDisk": "xnet-1.15-2.1.11.jar" }, "dateInstalled": "2020-03-28T09:44:06.1572039Z", - "dateUpdated": "2020-08-28T18:45:40.961457Z", - "dateLastUpdateAttempted": "2020-08-28T18:45:40.961457Z", - "status": 5, + "dateUpdated": "2020-09-15T18:48:15.7348147Z", + "dateLastUpdateAttempted": "2020-09-15T18:48:15.7348147Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -13680,14 +13931,14 @@ "addonID": 399630, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3056947, - "displayName": "EmendatusEnigmatica-1.15.2-1.0.7", - "fileName": "EmendatusEnigmatica-1.15.2-1.0.7.jar", - "fileDate": "2020-09-14T10:25:01.87Z", - "fileLength": 1904170, + "id": 3057802, + "displayName": "EmendatusEnigmatica-1.15.2-1.0.8", + "fileName": "EmendatusEnigmatica-1.15.2-1.0.8.jar", + "fileDate": "2020-09-15T16:15:43.56Z", + "fileLength": 1794326, "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3056/947/EmendatusEnigmatica-1.15.2-1.0.7.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/802/EmendatusEnigmatica-1.15.2-1.0.8.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -13695,7 +13946,7 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2478216520, + "fingerprint": 549289355, "type": 0 }, { @@ -13703,14 +13954,9 @@ "fingerprint": 336521678, "type": 0 }, - { - "foldername": ".cache", - "fingerprint": 4277575909, - "type": 0 - }, { "foldername": "assets", - "fingerprint": 3499334543, + "fingerprint": 3838502060, "type": 0 }, { @@ -13729,7 +13975,7 @@ "type": 0 } ], - "packageFingerprint": 764508960, + "packageFingerprint": 129498183, "gameVersion": [ "Forge", "1.15.2" @@ -13743,11 +13989,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "EmendatusEnigmatica-1.15.2-1.0.7.jar" + "FileNameOnDisk": "EmendatusEnigmatica-1.15.2-1.0.8.jar" }, "dateInstalled": "2020-08-06T21:18:41.2574262Z", - "dateUpdated": "2020-09-14T19:06:41.2022227Z", - "dateLastUpdateAttempted": "2020-09-14T19:06:41.2022227Z", + "dateUpdated": "2020-09-15T18:32:36.8131534Z", + "dateLastUpdateAttempted": "2020-09-15T18:32:36.8131534Z", "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -14775,14 +15021,14 @@ "addonID": 233105, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3043255, - "displayName": "McJtyLib - 1.15-4.1.7", - "fileName": "mcjtylib-1.15-4.1.7.jar", - "fileDate": "2020-08-27T04:37:29.97Z", - "fileLength": 539216, + "id": 3057519, + "displayName": "McJtyLib - 1.15-4.1.8", + "fileName": "mcjtylib-1.15-4.1.8.jar", + "fileDate": "2020-09-15T05:01:21.563Z", + "fileLength": 544010, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3043/255/mcjtylib-1.15-4.1.7.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/519/mcjtylib-1.15-4.1.8.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -14803,17 +15049,17 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2636917835, + "fingerprint": 752982441, "type": 0 }, { "foldername": "mcjty", - "fingerprint": 1875892762, + "fingerprint": 2853259377, "type": 0 }, { "foldername": "assets", - "fingerprint": 847320386, + "fingerprint": 1928195107, "type": 0 }, { @@ -14822,7 +15068,7 @@ "type": 0 } ], - "packageFingerprint": 1574298075, + "packageFingerprint": 1864864636, "gameVersion": [ "Forge", "1.15.2" @@ -14836,12 +15082,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "mcjtylib-1.15-4.1.7.jar" + "FileNameOnDisk": "mcjtylib-1.15-4.1.8.jar" }, "dateInstalled": "2020-03-28T09:44:06.1612027Z", - "dateUpdated": "2020-08-28T17:38:49.143178Z", - "dateLastUpdateAttempted": "2020-08-28T17:38:49.143178Z", - "status": 5, + "dateUpdated": "2020-09-15T18:34:54.0799424Z", + "dateLastUpdateAttempted": "2020-09-15T18:34:54.0799424Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -16460,26 +16706,26 @@ "addonID": 406959, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3054248, - "displayName": "thermal_locomotion-1.15.2-0.2.2b.jar", - "fileName": "thermal_locomotion-1.15.2-0.2.2b.jar", - "fileDate": "2020-09-11T03:35:46.023Z", - "fileLength": 88627, + "id": 3057451, + "displayName": "thermal_locomotion-1.15.2-0.2.4b.jar", + "fileName": "thermal_locomotion-1.15.2-0.2.4b.jar", + "fileDate": "2020-09-15T01:52:44.69Z", + "fileLength": 88631, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3054/248/thermal_locomotion-1.15.2-0.2.2b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/451/thermal_locomotion-1.15.2-0.2.4b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 69162, + "addonId": 222880, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 222880, + "addonId": 69162, "type": 3, "fileId": 0 } @@ -16488,7 +16734,7 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1612077396, + "fingerprint": 2306985480, "type": 0 }, { @@ -16517,9 +16763,8 @@ "type": 0 } ], - "packageFingerprint": 2963308900, + "packageFingerprint": 506364233, "gameVersion": [ - "Forge", "1.15.2" ], "hasInstallScript": false, @@ -16531,12 +16776,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal_locomotion-1.15.2-0.2.2b.jar" + "FileNameOnDisk": "thermal_locomotion-1.15.2-0.2.4b.jar" }, "dateInstalled": "2020-09-08T11:14:38.9929122Z", - "dateUpdated": "2020-09-11T18:22:25.0573978Z", - "dateLastUpdateAttempted": "2020-09-11T18:22:25.0573978Z", - "status": 5, + "dateUpdated": "2020-09-15T18:48:10.4447279Z", + "dateLastUpdateAttempted": "2020-09-15T18:48:10.4447279Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -16857,14 +17102,14 @@ "addonID": 296686, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2996142, - "displayName": "rsgauges-1.15.2-1.2.5-b1.jar", - "fileName": "rsgauges-1.15.2-1.2.5-b1.jar", - "fileDate": "2020-07-04T07:14:32.003Z", - "fileLength": 870587, + "id": 3057824, + "displayName": "rsgauges-1.15.2-1.2.5-b2.jar", + "fileName": "rsgauges-1.15.2-1.2.5-b2.jar", + "fileDate": "2020-09-15T16:41:33.023Z", + "fileLength": 870384, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2996/142/rsgauges-1.15.2-1.2.5-b1.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/824/rsgauges-1.15.2-1.2.5-b2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -16872,17 +17117,17 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1670516493, + "fingerprint": 1258813114, "type": 0 }, { "foldername": "wile", - "fingerprint": 2794010549, + "fingerprint": 2199499259, "type": 0 }, { "foldername": ".gitversion-rsgauges", - "fingerprint": 850799546, + "fingerprint": 1873446994, "type": 0 }, { @@ -16906,7 +17151,7 @@ "type": 0 } ], - "packageFingerprint": 6708036, + "packageFingerprint": 3937379916, "gameVersion": [ "1.15.2" ], @@ -16919,12 +17164,12 @@ "gameVersionDateReleased": "2020-01-22T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rsgauges-1.15.2-1.2.5-b1.jar" + "FileNameOnDisk": "rsgauges-1.15.2-1.2.5-b2.jar" }, "dateInstalled": "2020-03-28T09:44:06.155219Z", - "dateUpdated": "2020-07-05T19:32:41.2680562Z", - "dateLastUpdateAttempted": "2020-07-05T19:32:41.2680562Z", - "status": 5, + "dateUpdated": "2020-09-15T18:32:47.8333625Z", + "dateLastUpdateAttempted": "2020-09-15T18:32:47.8333625Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -18385,14 +18630,14 @@ "addonID": 291737, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3054246, - "displayName": "thermal_innovation-1.15.2-0.2.2b.jar", - "fileName": "thermal_innovation-1.15.2-0.2.2b.jar", - "fileDate": "2020-09-11T03:35:28.387Z", - "fileLength": 93664, + "id": 3057452, + "displayName": "thermal_innovation-1.15.2-0.2.4b.jar", + "fileName": "thermal_innovation-1.15.2-0.2.4b.jar", + "fileDate": "2020-09-15T01:53:01.717Z", + "fileLength": 93682, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3054/246/thermal_innovation-1.15.2-0.2.2b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/452/thermal_innovation-1.15.2-0.2.4b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -18407,12 +18652,12 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 772759795, + "fingerprint": 1867924777, "type": 0 }, { "foldername": "cofh", - "fingerprint": 1464404833, + "fingerprint": 818670055, "type": 0 }, { @@ -18436,7 +18681,7 @@ "type": 0 } ], - "packageFingerprint": 623559186, + "packageFingerprint": 1571852758, "gameVersion": [ "Forge", "1.15.2" @@ -18450,12 +18695,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal_innovation-1.15.2-0.2.2b.jar" + "FileNameOnDisk": "thermal_innovation-1.15.2-0.2.4b.jar" }, "dateInstalled": "2020-09-08T11:11:21.4280209Z", - "dateUpdated": "2020-09-11T18:22:16.9879454Z", - "dateLastUpdateAttempted": "2020-09-11T18:22:16.9879454Z", - "status": 5, + "dateUpdated": "2020-09-15T18:40:14.7201935Z", + "dateLastUpdateAttempted": "2020-09-15T18:40:14.7201935Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -19682,26 +19927,20 @@ "addonID": 342466, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3043254, - "displayName": "RFToolsUtility - 1.15-2.1.9", - "fileName": "rftoolsutility-1.15-2.1.9.jar", - "fileDate": "2020-08-27T04:37:20.367Z", - "fileLength": 1420712, - "releaseType": 2, + "id": 3057522, + "displayName": "RFToolsUtility - 1.15-2.1.10", + "fileName": "rftoolsutility-1.15-2.1.10.jar", + "fileDate": "2020-09-15T05:05:48.05Z", + "fileLength": 1429822, + "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3043/254/rftoolsutility-1.15-2.1.9.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/522/rftoolsutility-1.15-2.1.10.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 270789, - "type": 2, - "fileId": 0 - }, - { - "id": 0, - "addonId": 326041, + "addonId": 233105, "type": 3, "fileId": 0 }, @@ -19713,26 +19952,32 @@ }, { "id": 0, - "addonId": 233105, + "addonId": 326041, "type": 3, "fileId": 0 + }, + { + "id": 0, + "addonId": 270789, + "type": 2, + "fileId": 0 } ], "isAvailable": true, "modules": [ { "foldername": "META-INF", - "fingerprint": 1085360335, + "fingerprint": 3409373992, "type": 0 }, { "foldername": "mcjty", - "fingerprint": 954512857, + "fingerprint": 1173348043, "type": 0 }, { "foldername": "assets", - "fingerprint": 123949789, + "fingerprint": 4155799594, "type": 0 }, { @@ -19742,11 +19987,11 @@ }, { "foldername": "data", - "fingerprint": 3427167372, + "fingerprint": 2412541467, "type": 0 } ], - "packageFingerprint": 2852006085, + "packageFingerprint": 4132094797, "gameVersion": [ "Forge", "1.15.2" @@ -19760,12 +20005,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "rftoolsutility-1.15-2.1.9.jar" + "FileNameOnDisk": "rftoolsutility-1.15-2.1.10.jar" }, "dateInstalled": "2020-03-28T09:44:06.1741674Z", - "dateUpdated": "2020-08-28T18:44:05.0633935Z", - "dateLastUpdateAttempted": "2020-08-28T18:44:05.0633935Z", - "status": 5, + "dateUpdated": "2020-09-15T18:35:30.8500521Z", + "dateLastUpdateAttempted": "2020-09-15T18:35:30.8500521Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -20232,14 +20477,14 @@ "addonID": 241665, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3022448, - "displayName": "Psi r1.2-83.jar", - "fileName": "Psi r1.2-83.jar", - "fileDate": "2020-08-03T16:07:04.383Z", - "fileLength": 2155223, + "id": 3057858, + "displayName": "Psi r1.2-84.jar", + "fileName": "Psi r1.2-84.jar", + "fileDate": "2020-09-15T17:44:59.94Z", + "fileLength": 2164229, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3022/448/Psi r1.2-83.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3057/858/Psi r1.2-84.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -20254,12 +20499,12 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1300955787, + "fingerprint": 2818899372, "type": 0 }, { "foldername": "vazkii", - "fingerprint": 443191821, + "fingerprint": 2602291913, "type": 0 }, { @@ -20267,6 +20512,11 @@ "fingerprint": 873814736, "type": 0 }, + { + "foldername": ".cache", + "fingerprint": 3166808521, + "type": 0 + }, { "foldername": "pack.mcmeta", "fingerprint": 3603840603, @@ -20318,7 +20568,7 @@ "type": 0 } ], - "packageFingerprint": 2940125587, + "packageFingerprint": 732046085, "gameVersion": [ "1.15.2" ], @@ -20331,12 +20581,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Psi r1.2-83.jar" + "FileNameOnDisk": "Psi r1.2-84.jar" }, "dateInstalled": "2020-05-13T18:17:56.3761796Z", - "dateUpdated": "2020-08-03T18:58:32.3297006Z", - "dateLastUpdateAttempted": "2020-08-03T18:58:32.3297006Z", - "status": 5, + "dateUpdated": "2020-09-15T18:35:01.5899892Z", + "dateLastUpdateAttempted": "2020-09-15T18:35:01.5899892Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, From b6787c87d78a94dcebfb0f959ddf8e33b6fa6227 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Wed, 16 Sep 2020 20:26:01 +0200 Subject: [PATCH 30/39] ugly hack, fixes #496 --- .../base/recipetypes/minecraft/stonecutter.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/kubejs/data/enigmatica/kubejs/base/recipetypes/minecraft/stonecutter.js b/kubejs/data/enigmatica/kubejs/base/recipetypes/minecraft/stonecutter.js index 0fd2cb8..c512fbe 100644 --- a/kubejs/data/enigmatica/kubejs/base/recipetypes/minecraft/stonecutter.js +++ b/kubejs/data/enigmatica/kubejs/base/recipetypes/minecraft/stonecutter.js @@ -57,4 +57,17 @@ events.listen('recipes', function (event) { }); } }); + + // Conversion between Steel Ingot types, + // ugly hack to make IE villager trades for orevein maps + // (they require IE steel) + ingredient.of('#forge:ingots/steel').stacks.forEach(function (ingot) { + event.recipes.minecraft.stonecutting({ + ingredient: { + tag: 'forge:ingots/steel' + }, + result: ingot.id, + count: 1 + }); + }); }); From ecbd82b01a9d4b8ca401bc17780ff488c950e9a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Wed, 16 Sep 2020 20:35:04 +0200 Subject: [PATCH 31/39] upped lead and uranium gen --- config/emendatusenigmatica-common.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/emendatusenigmatica-common.toml b/config/emendatusenigmatica-common.toml index f228087..6d58b3c 100644 --- a/config/emendatusenigmatica-common.toml +++ b/config/emendatusenigmatica-common.toml @@ -171,10 +171,10 @@ Maximum = 40 #Configure the ore Vein Size [Default: 3] #Range: 0 ~ 64 - Size = 5 + Size = 4 #Ores count per Chunk [Default: 8] #Range: 0 ~ 64 - Count = 7 + Count = 10 ["Nickel Ore"] #Activate/Deactivate the World Gen [Default: true] @@ -203,10 +203,10 @@ Maximum = 20 #Configure the ore Vein Size [Default: 3] #Range: 0 ~ 64 - Size = 3 + Size = 4 #Ores count per Chunk [Default: 4] #Range: 0 ~ 64 - Count = 4 + Count = 9 ["Osmium Ore"] #Activate/Deactivate the World Gen [Default: true] From a9630a5bcc2a95afdb63d9f2cfdbacbd1eeb3999 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Wed, 16 Sep 2020 23:49:30 +0200 Subject: [PATCH 32/39] "fix" #496 --- .../enigmatica/kubejs/base/recipes/shapeless.js | 14 +++++++++++++- .../base/recipetypes/minecraft/stonecutter.js | 13 ------------- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/kubejs/data/enigmatica/kubejs/base/recipes/shapeless.js b/kubejs/data/enigmatica/kubejs/base/recipes/shapeless.js index fe49103..7058c56 100644 --- a/kubejs/data/enigmatica/kubejs/base/recipes/shapeless.js +++ b/kubejs/data/enigmatica/kubejs/base/recipes/shapeless.js @@ -121,7 +121,19 @@ events.listen('recipes', function (event) { '#forge:cobblestone', '#forge:cobblestone' ]), - shapelessRecipe(item.of('minecraft:cobblestone', 9), ['kubejs:compressed_cobblestone_1x']) + shapelessRecipe(item.of('minecraft:cobblestone', 9), ['kubejs:compressed_cobblestone_1x']), + shapelessRecipe(item.of('emendatusenigmatica:ingot_steel', 2), [ + 'immersiveengineering:ingot_steel', + 'immersiveengineering:ingot_steel' + ]), + shapelessRecipe(item.of('immersiveengineering:ingot_steel', 2), [ + 'mekanism:ingot_steel', + 'mekanism:ingot_steel' + ]), + shapelessRecipe(item.of('mekanism:ingot_steel', 2), [ + 'emendatusenigmatica:ingot_steel', + 'emendatusenigmatica:ingot_steel' + ]) ]; recipes.forEach(function (recipe) { diff --git a/kubejs/data/enigmatica/kubejs/base/recipetypes/minecraft/stonecutter.js b/kubejs/data/enigmatica/kubejs/base/recipetypes/minecraft/stonecutter.js index c512fbe..0fd2cb8 100644 --- a/kubejs/data/enigmatica/kubejs/base/recipetypes/minecraft/stonecutter.js +++ b/kubejs/data/enigmatica/kubejs/base/recipetypes/minecraft/stonecutter.js @@ -57,17 +57,4 @@ events.listen('recipes', function (event) { }); } }); - - // Conversion between Steel Ingot types, - // ugly hack to make IE villager trades for orevein maps - // (they require IE steel) - ingredient.of('#forge:ingots/steel').stacks.forEach(function (ingot) { - event.recipes.minecraft.stonecutting({ - ingredient: { - tag: 'forge:ingots/steel' - }, - result: ingot.id, - count: 1 - }); - }); }); From aef4644947fb2ceefe708eabc1b3296d1dd9482e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 19 Sep 2020 22:24:20 +0200 Subject: [PATCH 33/39] jaopca update --- config/jaopca/materials/biotite.toml | 4 ++++ .../materials/charged_certus_quartz.toml | 4 ++++ config/jaopca/modules/create_compat.toml | 4 ++++ config/jaopca/modules/mekanism_compat.toml | 8 ++++++++ config/jaopca/modules/thermal_expansion.toml | 5 +++++ .../modules/thermal_expansion_compat.toml | 19 +++++++++++++++++++ .../modules/thermal_expansion_non_ingot.toml | 5 +++++ 7 files changed, 49 insertions(+) create mode 100644 config/jaopca/modules/thermal_expansion.toml create mode 100644 config/jaopca/modules/thermal_expansion_compat.toml create mode 100644 config/jaopca/modules/thermal_expansion_non_ingot.toml diff --git a/config/jaopca/materials/biotite.toml b/config/jaopca/materials/biotite.toml index f4f16ad..75166b7 100644 --- a/config/jaopca/materials/biotite.toml +++ b/config/jaopca/materials/biotite.toml @@ -17,3 +17,7 @@ #The byproduct material to output in Silent's Mechanisms' Crusher. byproduct = "minecraft:cobblestone" +[mekanism] + #The base to use in Mekanism's Combiner to recreate ores. + ore_base = "#forge:cobblestone" + diff --git a/config/jaopca/materials/charged_certus_quartz.toml b/config/jaopca/materials/charged_certus_quartz.toml index ff6a648..9bb6f63 100644 --- a/config/jaopca/materials/charged_certus_quartz.toml +++ b/config/jaopca/materials/charged_certus_quartz.toml @@ -17,3 +17,7 @@ #The byproduct material to output in Create's crushing. byproduct = "minecraft:cobblestone" +[mekanism] + #The base to use in Mekanism's Combiner to recreate ores. + ore_base = "#forge:cobblestone" + diff --git a/config/jaopca/modules/create_compat.toml b/config/jaopca/modules/create_compat.toml index a958366..af11784 100644 --- a/config/jaopca/modules/create_compat.toml +++ b/config/jaopca/modules/create_compat.toml @@ -3,3 +3,7 @@ #The material blacklist of this module. materialBlacklist = [] +[recipes] + #The materials that should not have pressing recipes added. + toPlateMaterialBlacklist = [] + diff --git a/config/jaopca/modules/mekanism_compat.toml b/config/jaopca/modules/mekanism_compat.toml index a958366..c3e8e00 100644 --- a/config/jaopca/modules/mekanism_compat.toml +++ b/config/jaopca/modules/mekanism_compat.toml @@ -3,3 +3,11 @@ #The material blacklist of this module. materialBlacklist = [] +[recipes] + #The materials that should not have crushing recipes added. + toDustMaterialBlacklist = [] + #The materials that should not have enriching recipes added. + toCrystalMaterialBlacklist = [] + #The materials that should not have combining recipes added. + toOreMaterialBlacklist = [] + diff --git a/config/jaopca/modules/thermal_expansion.toml b/config/jaopca/modules/thermal_expansion.toml new file mode 100644 index 0000000..a958366 --- /dev/null +++ b/config/jaopca/modules/thermal_expansion.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. + materialBlacklist = [] + diff --git a/config/jaopca/modules/thermal_expansion_compat.toml b/config/jaopca/modules/thermal_expansion_compat.toml new file mode 100644 index 0000000..a59d06a --- /dev/null +++ b/config/jaopca/modules/thermal_expansion_compat.toml @@ -0,0 +1,19 @@ + +[general] + #The material blacklist of this module. + materialBlacklist = [] + +[recipes] + #The materials that should not have pulverizer recipes added. + toDustMaterialBlacklist = [] + #The materials that should not have smelter recipes added. + toIngotMaterialBlacklist = [] + #The materials that should not have press to plate recipes added. + toPlateMaterialBlacklist = [] + #The materials that should not have press to gear recipes added. + toGearMaterialBlacklist = [] + #The materials that should not have press to coin recipes added. + toCoinMaterialBlacklist = [] + #The materials that should not have create compat recipes added. + createToIngotMaterialBlacklist = [] + diff --git a/config/jaopca/modules/thermal_expansion_non_ingot.toml b/config/jaopca/modules/thermal_expansion_non_ingot.toml new file mode 100644 index 0000000..a958366 --- /dev/null +++ b/config/jaopca/modules/thermal_expansion_non_ingot.toml @@ -0,0 +1,5 @@ + +[general] + #The material blacklist of this module. + materialBlacklist = [] + From df227814b073383b664d781fcf98b59abe15634c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 19 Sep 2020 22:24:39 +0200 Subject: [PATCH 34/39] Fixes lapis recipe using hardcoded lapis sheet, #500 --- .../kubejs/base/unification/additions.js | 82 ++++++++++++++++++- .../integrated_circuit.json | 27 ++++++ 2 files changed, 105 insertions(+), 4 deletions(-) create mode 100644 openloader/data/Enigmatica 5 Datapack/data/create/recipes/mechanical_crafting/integrated_circuit.json diff --git a/kubejs/data/enigmatica/kubejs/base/unification/additions.js b/kubejs/data/enigmatica/kubejs/base/unification/additions.js index c8e4759..0b4170c 100644 --- a/kubejs/data/enigmatica/kubejs/base/unification/additions.js +++ b/kubejs/data/enigmatica/kubejs/base/unification/additions.js @@ -3,6 +3,7 @@ events.listen('recipes', function (event) { materialsToUnify.forEach(function (material) { enigmatica_ore_deposit_processing(event, material); immersiveengineering_gem_ore_processing(event, material); + immersiveengineering_hammer_crafting_plates(event, material); }); }); @@ -88,9 +89,6 @@ function immersiveengineering_gem_ore_processing(event, material) { var gemTag = ingredient.of('#forge:gems/' + material); var gem = getPreferredItemInTag(gemTag).id; - var oreTag = ingredient.of('#forge:ores/' + material); - var ore = getPreferredItemInTag(oreTag).id; - var dustTag = ingredient.of('#forge:dusts/' + material); var dust = getPreferredItemInTag(dustTag).id; @@ -108,8 +106,84 @@ function immersiveengineering_gem_ore_processing(event, material) { }, energy: 2000 }); +} + +function immersiveengineering_hammer_crafting_plates(event, material) { + var hammer = 'immersiveengineering:hammer'; + var ingotTag = ingredient.of('#forge:ingots/' + material); + var ingot = getPreferredItemInTag(ingotTag).id; - if (ore == air) { + var gemTag = ingredient.of('#forge:gems/' + material); + var gem = getPreferredItemInTag(gemTag).id; + + var plateTag = ingredient.of('#forge:plates/' + material); + var plate = getPreferredItemInTag(plateTag).id; + + if (plate == air) { return; } + + if (ingot != air) { + event.shapeless(plate, [hammer, ingot]); + event.remove({ id: 'immersiveengineering:crafting/plate_' + material + '_hammering' }); + event.recipes.immersiveengineering.metal_press({ + mold: { + item: 'immersiveengineering:mold_plate' + }, + result: { + tag: 'forge:plates/' + material + }, + input: { + tag: 'forge:ingots/' + material + }, + energy: 2400 + }); + // JAOPCA added thermal press ingot compat + // event.recipes.thermal.press({ + // type: 'thermal:press', + // ingredient: { + // tag: 'forge:ingots/' + material + // }, + // result: [ + // { + // item: plate + // } + // ] + // }); + } + + if (gem != air) { + var storageBlockTag = ingredient.of('#forge:storage_blocks/' + material); + var storageBlock = getPreferredItemInTag(storageBlockTag).id; + var input = gem; + var inputTag = 'forge:gems/' + material; + if (storageBlock != null) { + input = storageBlock; + inputTag = 'forge:storage_blocks/' + material; + } + + event.shapeless(plate, [hammer, input]); + event.recipes.immersiveengineering.metal_press({ + mold: { + item: 'immersiveengineering:mold_plate' + }, + result: { + tag: 'forge:plates/' + material + }, + input: { + tag: inputTag + }, + energy: 2400 + }); + event.recipes.thermal.press({ + ingredient: { + tag: inputTag + }, + result: [ + { + item: plate + } + ] + }); + } } diff --git a/openloader/data/Enigmatica 5 Datapack/data/create/recipes/mechanical_crafting/integrated_circuit.json b/openloader/data/Enigmatica 5 Datapack/data/create/recipes/mechanical_crafting/integrated_circuit.json new file mode 100644 index 0000000..9af77ce --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/create/recipes/mechanical_crafting/integrated_circuit.json @@ -0,0 +1,27 @@ +{ + "type": "create:mechanical_crafting", + "pattern": [ + " L ", + "RRR", + " C ", + "NNN" + ], + "key": { + "L": { + "tag": "forge:plates/lapis" + }, + "R": { + "tag": "forge:dusts/redstone" + }, + "C": { + "tag": "forge:plates/iron" + }, + "N": { + "tag": "forge:nuggets/gold" + } + }, + "result": { + "item": "create:integrated_circuit", + "count": 1 + } +} \ No newline at end of file From 45a754c523c7b01b2831ed765fe40bf8f52e5c1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 19 Sep 2020 22:24:48 +0200 Subject: [PATCH 35/39] Increased y level of emerald ore --- config/emendatusenigmatica-common.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/emendatusenigmatica-common.toml b/config/emendatusenigmatica-common.toml index 6d58b3c..e43b29c 100644 --- a/config/emendatusenigmatica-common.toml +++ b/config/emendatusenigmatica-common.toml @@ -69,7 +69,7 @@ Active = true #Minimum Y-Level [Default: 64] #Range: 0 ~ 128 - Minimum = 100 + Minimum = 192 #Maximum Y-Level [Default: 128] #Range: 0 ~ 256 Maximum = 256 From 8cfa72f614239b5990d138f603f2adcea10e8084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 19 Sep 2020 22:24:52 +0200 Subject: [PATCH 36/39] Update .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 1a25268..6fa0b46 100644 --- a/.gitignore +++ b/.gitignore @@ -103,3 +103,4 @@ config/defaultoptions/options.txt config/extremesoundmuffler-client.toml config/pneumaticcraft/ArmorFeatureStatus.cfg config/pneumaticcraft/PneumaticArmorHUDLayout.cfg +.vote2020_marker From 972b6bfea5b0236cbfdfe9820853153bc221c1ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 19 Sep 2020 22:51:12 +0200 Subject: [PATCH 37/39] fixes #491 --- .../create/smelter_create_alloy_brass.json | 33 ++++++++++++++++ .../smelter_create_crushed_copper_ore.json | 27 +++++++++++++ .../smelter_create_crushed_gold_ore.json | 28 ++++++++++++++ .../smelter_create_crushed_iron_ore.json | 27 +++++++++++++ .../smelter_create_crushed_zinc_ore.json | 27 +++++++++++++ .../create/smelter_create_zinc_ore.json | 27 +++++++++++++ .../machine/pulverizer_apatite_ore.json | 17 +++++++++ .../recipes/machine/pulverizer_blaze_rod.json | 16 ++++++++ .../recipes/machine/pulverizer_blitz_rod.json | 16 ++++++++ .../recipes/machine/pulverizer_lapis_ore.json | 38 +++++++++---------- .../recipes/machine/pulverizer_niter_ore.json | 24 ++++++------ .../machine/pulverizer_quartz_ore.json | 30 +++++++-------- .../machine/pulverizer_red_sandstone.json | 36 ++++++++++++++++++ .../pulverizer_red_sandstone_slab.json | 26 +++++++++++++ .../recipes/machine/pulverizer_sandstone.json | 36 ++++++++++++++++++ .../machine/pulverizer_sandstone_slab.json | 26 +++++++++++++ .../machine/pulverizer_sulfur_ore.json | 24 ++++++------ .../recipes/machine/pulverizer_tin_ore.json | 2 +- .../recipes/machine/smelter_apatite_ore.json | 17 +++++++++ .../machine/smelter_catalyst_cinnabar.json | 11 ++++++ .../recipes/machine/smelter_lapis_ore.json | 38 +++++++++---------- .../recipes/machine/smelter_niter_ore.json | 17 +++++++++ .../recipes/machine/smelter_quartz_ore.json | 21 ++++++++++ .../recipes/machine/smelter_sulfur_ore.json | 17 +++++++++ .../recipes/machine/smelter_tin_ore.json | 2 +- 25 files changed, 504 insertions(+), 79 deletions(-) create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_alloy_brass.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_copper_ore.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_gold_ore.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_iron_ore.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_zinc_ore.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_zinc_ore.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_apatite_ore.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_blaze_rod.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_blitz_rod.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_red_sandstone.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_red_sandstone_slab.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_sandstone.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_sandstone_slab.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_apatite_ore.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_catalyst_cinnabar.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_niter_ore.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_quartz_ore.json create mode 100644 openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_sulfur_ore.json diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_alloy_brass.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_alloy_brass.json new file mode 100644 index 0000000..098420d --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_alloy_brass.json @@ -0,0 +1,33 @@ +{ + "type": "thermal:smelter", + "input": [ + { + "value": [ + { + "tag": "forge:ingots/copper" + }, + { + "tag": "forge:dusts/copper" + } + ], + "count": 1 + }, + { + "tag": "forge:ingots/zinc", + "count": 1 + } + ], + "result": [ + { + "item": "create:brass_ingot", + "count": 2 + } + ], + "energy": 3200, + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "create" + } + ] +} \ No newline at end of file diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_copper_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_copper_ore.json new file mode 100644 index 0000000..1a9bd8f --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_copper_ore.json @@ -0,0 +1,27 @@ +{ + "type": "thermal:smelter", + "ingredient": { + "item": "create:crushed_copper_ore" + }, + "result": [ + { + "item": "emendatusenigmatica:ingot_copper", + "chance": 1.0 + }, + { + "item": "minecraft:gold_ingot", + "chance": 0.2 + }, + { + "item": "thermal:rich_slag", + "chance": 0.2 + } + ], + "experience": 0.2, + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "create" + } + ] +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_gold_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_gold_ore.json new file mode 100644 index 0000000..70fee9e --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_gold_ore.json @@ -0,0 +1,28 @@ +{ + "type": "thermal:smelter", + "ingredient": { + "item": "create:crushed_gold_ore" + }, + "result": [ + { + "item": "minecraft:gold_ingot", + "chance": 1.0 + }, + { + "item": "emendatusenigmatica:gem_cinnabar", + "chance": 0.1, + "locked": true + }, + { + "item": "thermal:rich_slag", + "chance": 0.2 + } + ], + "experience": 0.2, + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "create" + } + ] +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_iron_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_iron_ore.json new file mode 100644 index 0000000..b64deea --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_iron_ore.json @@ -0,0 +1,27 @@ +{ + "type": "thermal:smelter", + "ingredient": { + "item": "create:crushed_iron_ore" + }, + "result": [ + { + "item": "minecraft:iron_ingot", + "chance": 1.0 + }, + { + "item": "emendatusenigmatica:ingot_nickel", + "chance": 0.2 + }, + { + "item": "thermal:rich_slag", + "chance": 0.2 + } + ], + "experience": 0.2, + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "create" + } + ] +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_zinc_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_zinc_ore.json new file mode 100644 index 0000000..8bba7d3 --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_crushed_zinc_ore.json @@ -0,0 +1,27 @@ +{ + "type": "thermal:smelter", + "ingredient": { + "item": "create:crushed_zinc_ore" + }, + "result": [ + { + "item": "emendatusenigmatica:ingot_zinc", + "chance": 1.0 + }, + { + "item": "emendatusenigmatica:gem_sulfur", + "chance": 0.2 + }, + { + "item": "thermal:rich_slag", + "chance": 0.2 + } + ], + "experience": 0.2, + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "create" + } + ] +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_zinc_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_zinc_ore.json new file mode 100644 index 0000000..fefdf47 --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/create/smelter_create_zinc_ore.json @@ -0,0 +1,27 @@ +{ + "type": "thermal:smelter", + "ingredient": { + "tag": "forge:ores/zinc" + }, + "result": [ + { + "item": "emendatusenigmatica:ingot_zinc", + "chance": 1.0 + }, + { + "item": "emendatusenigmatica:gem_sulfur", + "chance": 0.2 + }, + { + "item": "thermal:rich_slag", + "chance": 0.2 + } + ], + "experience": 0.2, + "conditions": [ + { + "type": "forge:mod_loaded", + "modid": "create" + } + ] +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_apatite_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_apatite_ore.json new file mode 100644 index 0000000..a6a3a3c --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_apatite_ore.json @@ -0,0 +1,17 @@ +{ + "type": "thermal:pulverizer", + "ingredient": { + "tag": "forge:ores/apatite" + }, + "result": [ + { + "item": "emendatusenigmatica:gem_apatite", + "chance": 12.5 + }, + { + "item": "minecraft:gravel", + "chance": 0.2 + } + ], + "experience": 0.5 +} \ No newline at end of file diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_blaze_rod.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_blaze_rod.json new file mode 100644 index 0000000..3c0ee26 --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_blaze_rod.json @@ -0,0 +1,16 @@ +{ + "type": "thermal:pulverizer", + "ingredient": { + "item": "minecraft:blaze_rod" + }, + "result": [ + { + "item": "minecraft:blaze_powder", + "chance": 3.0 + }, + { + "item": "emendatusenigmatica:gem_sulfur", + "chance": 0.25 + } + ] +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_blitz_rod.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_blitz_rod.json new file mode 100644 index 0000000..fbc3e0b --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_blitz_rod.json @@ -0,0 +1,16 @@ +{ + "type": "thermal:pulverizer", + "ingredient": { + "item": "thermal:blitz_rod" + }, + "result": [ + { + "item": "thermal:blitz_powder", + "chance": 3.0 + }, + { + "item": "emendatusenigmatica:gem_potassium_nitrate", + "chance": 0.25 + } + ] +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_lapis_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_lapis_ore.json index 0ec8523..4acf38d 100644 --- a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_lapis_ore.json +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_lapis_ore.json @@ -1,21 +1,21 @@ { - "type": "thermal:pulverizer", - "ingredient": { - "tag": "forge:ores/lapis" - }, - "result": [ - { - "item": "minecraft:lapis_lazuli", - "chance": 12.5 + "type": "thermal:pulverizer", + "ingredient": { + "tag": "forge:ores/lapis" }, - { - "item": "thermal:sulfur", - "chance": 0.25 - }, - { - "item": "minecraft:gravel", - "chance": 0.2 - } - ], - "experience": 0.5 -} \ No newline at end of file + "result": [ + { + "item": "minecraft:lapis_lazuli", + "chance": 12.5 + }, + { + "item": "emendatusenigmatica:gem_sulfur", + "chance": 0.25 + }, + { + "item": "minecraft:gravel", + "chance": 0.2 + } + ], + "experience": 0.5 +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_niter_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_niter_ore.json index b6e8d56..02a0d9e 100644 --- a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_niter_ore.json +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_niter_ore.json @@ -1,13 +1,13 @@ { - "type": "thermal:pulverizer", - "ingredient": { - "tag": "forge:ores/niter" - }, - "result": [ - { - "item": "thermal:niter", - "chance": 6.5 - } - ], - "experience": 0.5 -} \ No newline at end of file + "type": "thermal:pulverizer", + "ingredient": { + "tag": "forge:ores/niter" + }, + "result": [ + { + "item": "emendatusenigmatica:gem_potassium_nitrate", + "chance": 6.5 + } + ], + "experience": 0.5 +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_quartz_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_quartz_ore.json index ab4ea9a..3dea74f 100644 --- a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_quartz_ore.json +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_quartz_ore.json @@ -1,17 +1,17 @@ { - "type": "thermal:pulverizer", - "ingredient": { - "tag": "forge:ores/quartz" - }, - "result": [ - { - "item": "minecraft:quartz", - "chance": 2.5 + "type": "thermal:pulverizer", + "ingredient": { + "tag": "forge:ores/quartz" }, - { - "item": "thermal:sulfur", - "chance": 0.25 - } - ], - "experience": 0.5 -} \ No newline at end of file + "result": [ + { + "item": "minecraft:quartz", + "chance": 2.5 + }, + { + "item": "emendatusenigmatica:gem_sulfur", + "chance": 0.25 + } + ], + "experience": 0.5 +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_red_sandstone.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_red_sandstone.json new file mode 100644 index 0000000..f4f72ed --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_red_sandstone.json @@ -0,0 +1,36 @@ +{ + "type": "thermal:pulverizer", + "ingredient": { + "value": [ + { + "item": "minecraft:red_sandstone" + }, + { + "item": "minecraft:chiseled_red_sandstone" + }, + { + "item": "minecraft:cut_red_sandstone" + }, + { + "item": "minecraft:smooth_red_sandstone" + }, + { + "item": "minecraft:red_sandstone_stairs" + }, + { + "item": "minecraft:smooth_red_sandstone_stairs" + } + ] + }, + "result": [ + { + "item": "minecraft:red_sand", + "count": 2 + }, + { + "item": "emendatusenigmatica:gem_potassium_nitrate", + "chance": 0.3 + } + ], + "experience": 0.1 +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_red_sandstone_slab.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_red_sandstone_slab.json new file mode 100644 index 0000000..0b835a0 --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_red_sandstone_slab.json @@ -0,0 +1,26 @@ +{ + "type": "thermal:pulverizer", + "ingredient": { + "value": [ + { + "item": "minecraft:red_sandstone_slab" + }, + { + "item": "minecraft:cut_red_sandstone_slab" + }, + { + "item": "minecraft:smooth_red_sandstone_slab" + } + ] + }, + "result": [ + { + "item": "minecraft:red_sand" + }, + { + "item": "emendatusenigmatica:gem_potassium_nitrate", + "chance": 0.15 + } + ], + "experience": 0.1 +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_sandstone.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_sandstone.json new file mode 100644 index 0000000..99269e4 --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_sandstone.json @@ -0,0 +1,36 @@ +{ + "type": "thermal:pulverizer", + "ingredient": { + "value": [ + { + "item": "minecraft:sandstone" + }, + { + "item": "minecraft:chiseled_sandstone" + }, + { + "item": "minecraft:cut_sandstone" + }, + { + "item": "minecraft:smooth_sandstone" + }, + { + "item": "minecraft:sandstone_stairs" + }, + { + "item": "minecraft:smooth_sandstone_stairs" + } + ] + }, + "result": [ + { + "item": "minecraft:sand", + "count": 2 + }, + { + "item": "emendatusenigmatica:gem_potassium_nitrate", + "chance": 0.3 + } + ], + "experience": 0.1 +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_sandstone_slab.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_sandstone_slab.json new file mode 100644 index 0000000..62e8b57 --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_sandstone_slab.json @@ -0,0 +1,26 @@ +{ + "type": "thermal:pulverizer", + "ingredient": { + "value": [ + { + "item": "minecraft:sandstone_slab" + }, + { + "item": "minecraft:cut_sandstone_slab" + }, + { + "item": "minecraft:smooth_sandstone_slab" + } + ] + }, + "result": [ + { + "item": "minecraft:sand" + }, + { + "item": "emendatusenigmatica:gem_potassium_nitrate", + "chance": 0.15 + } + ], + "experience": 0.1 +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_sulfur_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_sulfur_ore.json index 274475b..898aeee 100644 --- a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_sulfur_ore.json +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_sulfur_ore.json @@ -1,13 +1,13 @@ { - "type": "thermal:pulverizer", - "ingredient": { - "tag": "forge:ores/sulfur" - }, - "result": [ - { - "item": "thermal:sulfur", - "chance": 6.5 - } - ], - "experience": 0.5 -} \ No newline at end of file + "type": "thermal:pulverizer", + "ingredient": { + "tag": "forge:ores/sulfur" + }, + "result": [ + { + "item": "emendatusenigmatica:gem_sulfur", + "chance": 6.5 + } + ], + "experience": 0.5 +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_tin_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_tin_ore.json index f5f2fa8..8733830 100644 --- a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_tin_ore.json +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/pulverizer_tin_ore.json @@ -9,7 +9,7 @@ "chance": 2.0 }, { - "item": "thermal:apatite", + "item": "emendatusenigmatica:gem_apatite", "chance": 0.5 }, { diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_apatite_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_apatite_ore.json new file mode 100644 index 0000000..3a67333 --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_apatite_ore.json @@ -0,0 +1,17 @@ +{ + "type": "thermal:smelter", + "ingredient": { + "tag": "forge:ores/apatite" + }, + "result": [ + { + "item": "emendatusenigmatica:gem_apatite", + "chance": 6.5 + }, + { + "item": "thermal:rich_slag", + "chance": 0.15 + } + ], + "experience": 0.5 +} \ No newline at end of file diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_catalyst_cinnabar.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_catalyst_cinnabar.json new file mode 100644 index 0000000..cc0584d --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_catalyst_cinnabar.json @@ -0,0 +1,11 @@ +{ + "type": "thermal:smelter_catalyst", + "ingredient": { + "item": "emendatusenigmatica:gem_cinnabar" + }, + "primary_mod": 3.0, + "secondary_mod": 3.0, + "energy_mod": 2.5, + "min_chance": 0.50, + "use_chance": 0.80 +} \ No newline at end of file diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_lapis_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_lapis_ore.json index ad1f93c..84e6ebb 100644 --- a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_lapis_ore.json +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_lapis_ore.json @@ -1,21 +1,21 @@ { - "type": "thermal:smelter", - "ingredient": { - "tag": "forge:ores/lapis" - }, - "result": [ - { - "item": "minecraft:lapis_lazuli", - "chance": 8.5 + "type": "thermal:smelter", + "ingredient": { + "tag": "forge:ores/lapis" }, - { - "item": "thermal:sulfur", - "chance": 0.75 - }, - { - "item": "thermal:rich_slag", - "chance": 0.15 - } - ], - "experience": 0.5 -} \ No newline at end of file + "result": [ + { + "item": "minecraft:lapis_lazuli", + "chance": 8.5 + }, + { + "item": "emendatusenigmatica:gem_sulfur", + "chance": 0.75 + }, + { + "item": "thermal:rich_slag", + "chance": 0.15 + } + ], + "experience": 0.5 +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_niter_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_niter_ore.json new file mode 100644 index 0000000..5cb0e0d --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_niter_ore.json @@ -0,0 +1,17 @@ +{ + "type": "thermal:smelter", + "ingredient": { + "tag": "forge:ores/niter" + }, + "result": [ + { + "item": "emendatusenigmatica:gem_potassium_nitrate", + "chance": 3.5 + }, + { + "item": "thermal:rich_slag", + "chance": 0.15 + } + ], + "experience": 0.5 +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_quartz_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_quartz_ore.json new file mode 100644 index 0000000..5e32303 --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_quartz_ore.json @@ -0,0 +1,21 @@ +{ + "type": "thermal:smelter", + "ingredient": { + "tag": "forge:ores/quartz" + }, + "result": [ + { + "item": "minecraft:quartz", + "chance": 1.5 + }, + { + "item": "emendatusenigmatica:gem_sulfur", + "chance": 0.5 + }, + { + "item": "thermal:rich_slag", + "chance": 0.15 + } + ], + "experience": 0.5 +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_sulfur_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_sulfur_ore.json new file mode 100644 index 0000000..bc9e168 --- /dev/null +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_sulfur_ore.json @@ -0,0 +1,17 @@ +{ + "type": "thermal:smelter", + "ingredient": { + "tag": "forge:ores/sulfur" + }, + "result": [ + { + "item": "emendatusenigmatica:gem_sulfur", + "chance": 3.5 + }, + { + "item": "thermal:rich_slag", + "chance": 0.15 + } + ], + "experience": 0.5 +} diff --git a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_tin_ore.json b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_tin_ore.json index 3a259bd..6811326 100644 --- a/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_tin_ore.json +++ b/openloader/data/Enigmatica 5 Datapack/data/thermal/recipes/machine/smelter_tin_ore.json @@ -9,7 +9,7 @@ "chance": 1.0 }, { - "item": "thermal:apatite", + "item": "emendatusenigmatica:gem_apatite", "chance": 0.75 }, { From 39aa945a739a2dbdc968ffdeba5c6e4c5e7fef8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 19 Sep 2020 22:51:17 +0200 Subject: [PATCH 38/39] Update minecraftinstance.json --- minecraftinstance.json | 1395 ++++++++++++++++++++-------------------- 1 file changed, 702 insertions(+), 693 deletions(-) diff --git a/minecraftinstance.json b/minecraftinstance.json index 5e39e73..5635600 100644 --- a/minecraftinstance.json +++ b/minecraftinstance.json @@ -30,7 +30,7 @@ "isUnlocked": true, "javaArgsOverride": null, "javaDirOverride": null, - "lastPlayed": "2020-09-15T18:48:24.8262641Z", + "lastPlayed": "2020-09-19T18:55:03.4487301Z", "manifest": null, "fileDate": "0001-01-01T00:00:00", "installedModpack": null, @@ -56,7 +56,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.8148451Z", "lastWriteTimeUtc": "2020-09-11T17:33:30.0128658Z", - "queryTimestamp": "2020-09-14T19:53:33.6368139Z", + "queryTimestamp": "2020-09-15T20:57:23.0969899Z", "fileCount": 1, "fileSize": 489418 }, @@ -71,7 +71,7 @@ "status": 1, "timestamp": "2020-04-03T18:13:43.7606904Z", "lastWriteTimeUtc": "2020-03-29T18:49:52.5887395Z", - "queryTimestamp": "2020-09-14T19:53:33.6378111Z", + "queryTimestamp": "2020-09-15T20:57:23.0969899Z", "fileCount": 1, "fileSize": 519243 }, @@ -86,39 +86,39 @@ "status": 1, "timestamp": "2020-08-19T20:18:54.6287925Z", "lastWriteTimeUtc": "2020-08-06T21:18:34.2551851Z", - "queryTimestamp": "2020-09-14T19:53:33.6378111Z", + "queryTimestamp": "2020-09-15T20:57:23.097987Z", "fileCount": 1, "fileSize": 28893 }, { - "folderName": "DungeonCrawl-1.15.2-2.1.0.jar", - "fingerprint": 2360576658, - "fileDateHash": 1125743858, + "folderName": "thermal-1.15.2-0.2.5b.jar", + "fingerprint": 1477704780, + "fileDateHash": 3646471746, "sectionID": 8, "individualFingerprints": [ - 2360576658 + 1477704780 ], "status": 1, - "timestamp": "2020-09-14T19:53:32.2338034Z", - "lastWriteTimeUtc": "2020-09-14T19:06:39.1231816Z", - "queryTimestamp": "2020-09-14T19:53:33.6388105Z", + "timestamp": "2020-09-15T20:57:21.5434093Z", + "lastWriteTimeUtc": "2020-09-15T18:40:13.0628297Z", + "queryTimestamp": "2020-09-15T20:57:23.097987Z", "fileCount": 1, - "fileSize": 465249 + "fileSize": 2625011 }, { - "folderName": "mcjtylib-1.15-4.1.7.jar", - "fingerprint": 1574298075, - "fileDateHash": 3857392333, + "folderName": "DungeonCrawl-1.15.2-2.1.0.jar", + "fingerprint": 2360576658, + "fileDateHash": 1125743858, "sectionID": 8, "individualFingerprints": [ - 1574298075 + 2360576658 ], "status": 1, - "timestamp": "2020-09-06T18:29:35.4302267Z", - "lastWriteTimeUtc": "2020-08-28T17:38:49.1275823Z", - "queryTimestamp": "2020-09-14T19:53:33.6388105Z", + "timestamp": "2020-09-14T19:53:32.2338034Z", + "lastWriteTimeUtc": "2020-09-14T19:06:39.1231816Z", + "queryTimestamp": "2020-09-15T20:57:23.0989845Z", "fileCount": 1, - "fileSize": 539216 + "fileSize": 465249 }, { "folderName": "KleeSlabs_1.15.2-8.0.0.jar", @@ -131,24 +131,24 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.8937391Z", "lastWriteTimeUtc": "2020-02-02T19:16:04.242673Z", - "queryTimestamp": "2020-09-14T19:53:33.6388105Z", + "queryTimestamp": "2020-09-15T20:57:23.0989845Z", "fileCount": 1, "fileSize": 38372 }, { - "folderName": "rftoolsutility-1.15-2.1.9.jar", - "fingerprint": 2852006085, - "fileDateHash": 2432222684, + "folderName": "rftoolsbase-1.15-1.1.7.jar", + "fingerprint": 795876915, + "fileDateHash": 2859507505, "sectionID": 8, "individualFingerprints": [ - 2852006085 + 795876915 ], "status": 1, - "timestamp": "2020-09-06T18:29:35.7972468Z", - "lastWriteTimeUtc": "2020-08-28T18:44:05.0554298Z", - "queryTimestamp": "2020-09-14T19:53:33.6398073Z", + "timestamp": "2020-09-15T20:57:21.4785854Z", + "lastWriteTimeUtc": "2020-09-15T18:35:26.6263143Z", + "queryTimestamp": "2020-09-15T20:57:23.0989845Z", "fileCount": 1, - "fileSize": 1420712 + "fileSize": 383113 }, { "folderName": "trashcans-1.0.3-mc1.15.jar", @@ -161,7 +161,7 @@ "status": 1, "timestamp": "2020-08-22T20:48:50.3782029Z", "lastWriteTimeUtc": "2020-08-22T19:43:48.4508279Z", - "queryTimestamp": "2020-09-14T19:53:33.6398073Z", + "queryTimestamp": "2020-09-15T20:57:23.0999813Z", "fileCount": 1, "fileSize": 125243 }, @@ -176,7 +176,7 @@ "status": 1, "timestamp": "2020-06-08T19:55:54.8582769Z", "lastWriteTimeUtc": "2020-05-31T09:15:30.9001268Z", - "queryTimestamp": "2020-09-14T19:53:33.6408029Z", + "queryTimestamp": "2020-09-15T20:57:23.0999813Z", "fileCount": 1, "fileSize": 29544 }, @@ -191,7 +191,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:17.0443343Z", "lastWriteTimeUtc": "2020-02-02T18:25:19.9931605Z", - "queryTimestamp": "2020-09-14T19:53:33.6408029Z", + "queryTimestamp": "2020-09-15T20:57:23.0999813Z", "fileCount": 1, "fileSize": 2414041 }, @@ -206,7 +206,7 @@ "status": 1, "timestamp": "2020-03-09T19:11:48.4158799Z", "lastWriteTimeUtc": "2020-03-09T18:47:03.2102772Z", - "queryTimestamp": "2020-09-14T19:53:33.6418005Z", + "queryTimestamp": "2020-09-15T20:57:23.1009784Z", "fileCount": 1, "fileSize": 189698 }, @@ -221,7 +221,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:17.5070962Z", "lastWriteTimeUtc": "2020-03-03T20:57:17.4545071Z", - "queryTimestamp": "2020-09-14T19:53:33.6418005Z", + "queryTimestamp": "2020-09-15T20:57:23.1009784Z", "fileCount": 1, "fileSize": 196348 }, @@ -236,7 +236,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:17.4841571Z", "lastWriteTimeUtc": "2020-01-31T19:34:15.7671549Z", - "queryTimestamp": "2020-09-14T19:53:33.6423183Z", + "queryTimestamp": "2020-09-15T20:57:23.1019757Z", "fileCount": 1, "fileSize": 57609 }, @@ -251,7 +251,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.0454393Z", "lastWriteTimeUtc": "2020-09-06T17:59:02.3283201Z", - "queryTimestamp": "2020-09-14T19:53:33.6428377Z", + "queryTimestamp": "2020-09-15T20:57:23.1019757Z", "fileCount": 1, "fileSize": 26458748 }, @@ -266,7 +266,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:54.9828461Z", "lastWriteTimeUtc": "2020-08-16T20:18:42.6206731Z", - "queryTimestamp": "2020-09-14T19:53:33.6428377Z", + "queryTimestamp": "2020-09-15T20:57:23.1019757Z", "fileCount": 1, "fileSize": 42634 }, @@ -281,7 +281,7 @@ "status": 1, "timestamp": "2020-07-05T19:54:50.9498552Z", "lastWriteTimeUtc": "2020-07-05T19:32:53.9717169Z", - "queryTimestamp": "2020-09-14T19:53:33.6448194Z", + "queryTimestamp": "2020-09-15T20:57:23.1029731Z", "fileCount": 1, "fileSize": 817776 }, @@ -296,7 +296,7 @@ "status": 1, "timestamp": "2020-05-02T10:38:45.4245225Z", "lastWriteTimeUtc": "2020-04-29T19:01:33.2444299Z", - "queryTimestamp": "2020-09-14T19:53:33.6448194Z", + "queryTimestamp": "2020-09-15T20:57:23.1029731Z", "fileCount": 1, "fileSize": 826536 }, @@ -311,7 +311,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.8975619Z", "lastWriteTimeUtc": "2020-07-15T19:30:43.1964912Z", - "queryTimestamp": "2020-09-14T19:53:33.6458167Z", + "queryTimestamp": "2020-09-15T20:57:23.1039706Z", "fileCount": 1, "fileSize": 1511137 }, @@ -326,7 +326,7 @@ "status": 1, "timestamp": "2020-07-26T18:51:05.1327941Z", "lastWriteTimeUtc": "2020-07-25T20:26:23.2261513Z", - "queryTimestamp": "2020-09-14T19:53:33.6458167Z", + "queryTimestamp": "2020-09-15T20:57:23.1049679Z", "fileCount": 1, "fileSize": 66033 }, @@ -341,7 +341,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:54.3714812Z", "lastWriteTimeUtc": "2020-08-17T18:51:18.0376495Z", - "queryTimestamp": "2020-09-14T19:53:33.646816Z", + "queryTimestamp": "2020-09-15T20:57:23.1049679Z", "fileCount": 1, "fileSize": 485767 }, @@ -356,7 +356,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.4150175Z", "lastWriteTimeUtc": "2020-02-26T20:07:00.0026792Z", - "queryTimestamp": "2020-09-14T19:53:33.646816Z", + "queryTimestamp": "2020-09-15T20:57:23.1049679Z", "fileCount": 1, "fileSize": 14670 }, @@ -371,7 +371,7 @@ "status": 1, "timestamp": "2020-06-22T20:23:41.9027958Z", "lastWriteTimeUtc": "2020-06-22T20:07:42.5965657Z", - "queryTimestamp": "2020-09-14T19:53:33.6478114Z", + "queryTimestamp": "2020-09-15T20:57:23.1059651Z", "fileCount": 1, "fileSize": 195969 }, @@ -386,7 +386,7 @@ "status": 1, "timestamp": "2020-08-23T21:25:47.4782166Z", "lastWriteTimeUtc": "2020-08-23T18:25:37.8900889Z", - "queryTimestamp": "2020-09-14T19:53:33.6478114Z", + "queryTimestamp": "2020-09-15T20:57:23.1059651Z", "fileCount": 1, "fileSize": 704470 }, @@ -401,7 +401,7 @@ "status": 1, "timestamp": "2020-07-12T21:58:57.561717Z", "lastWriteTimeUtc": "2020-07-12T21:56:12.8037897Z", - "queryTimestamp": "2020-09-14T19:53:33.6478114Z", + "queryTimestamp": "2020-09-15T20:57:23.1069629Z", "fileCount": 1, "fileSize": 183819 }, @@ -416,7 +416,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:26.0104683Z", "lastWriteTimeUtc": "2020-09-11T18:22:00.784207Z", - "queryTimestamp": "2020-09-14T19:53:33.6488088Z", + "queryTimestamp": "2020-09-15T20:57:23.1069629Z", "fileCount": 1, "fileSize": 524658 }, @@ -431,25 +431,10 @@ "status": 1, "timestamp": "2020-06-16T19:13:01.439265Z", "lastWriteTimeUtc": "2020-06-14T19:06:25.1052708Z", - "queryTimestamp": "2020-09-14T19:53:33.6488088Z", + "queryTimestamp": "2020-09-15T20:57:23.1079605Z", "fileCount": 1, "fileSize": 4328267 }, - { - "folderName": "rftoolsbuilder-1.15-2.1.8.jar", - "fingerprint": 1040954630, - "fileDateHash": 3100884921, - "sectionID": 8, - "individualFingerprints": [ - 1040954630 - ], - "status": 1, - "timestamp": "2020-09-06T18:29:35.7643329Z", - "lastWriteTimeUtc": "2020-08-28T17:41:25.3333516Z", - "queryTimestamp": "2020-09-14T19:53:33.6498068Z", - "fileCount": 1, - "fileSize": 504006 - }, { "folderName": "NetherPortalFix_1.15.2-6.0.2.jar", "fingerprint": 1432536888, @@ -461,7 +446,7 @@ "status": 1, "timestamp": "2020-05-02T10:38:45.5372247Z", "lastWriteTimeUtc": "2020-04-29T20:09:58.255615Z", - "queryTimestamp": "2020-09-14T19:53:33.6498068Z", + "queryTimestamp": "2020-09-15T20:57:23.1079605Z", "fileCount": 1, "fileSize": 109134 }, @@ -476,25 +461,10 @@ "status": 1, "timestamp": "2020-07-03T20:47:54.4659426Z", "lastWriteTimeUtc": "2020-07-03T17:44:15.3994615Z", - "queryTimestamp": "2020-09-14T19:53:33.6498068Z", + "queryTimestamp": "2020-09-15T20:57:23.1089623Z", "fileCount": 1, "fileSize": 508500 }, - { - "folderName": "Psi r1.2-83.jar", - "fingerprint": 2940125587, - "fileDateHash": 2422496011, - "sectionID": 8, - "individualFingerprints": [ - 2940125587 - ], - "status": 1, - "timestamp": "2020-08-03T19:57:20.969054Z", - "lastWriteTimeUtc": "2020-08-03T18:58:32.3187295Z", - "queryTimestamp": "2020-09-14T19:53:33.6508074Z", - "fileCount": 1, - "fileSize": 2155223 - }, { "folderName": "ERP-V1.6-R.zip", "fingerprint": 1915012435, @@ -506,7 +476,7 @@ "status": 1, "timestamp": "2020-07-29T20:03:06.6623821Z", "lastWriteTimeUtc": "2020-07-28T20:40:39.6268682Z", - "queryTimestamp": "2020-09-14T19:53:33.6508074Z", + "queryTimestamp": "2020-09-15T20:57:23.1089623Z", "fileCount": 1, "fileSize": 1621864 }, @@ -521,7 +491,7 @@ "status": 1, "timestamp": "2020-07-28T19:15:34.2330354Z", "lastWriteTimeUtc": "2020-05-14T19:53:22.5577987Z", - "queryTimestamp": "2020-09-14T19:53:33.6518004Z", + "queryTimestamp": "2020-09-15T20:57:23.1099559Z", "fileCount": 1, "fileSize": 276400 }, @@ -536,7 +506,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.2368994Z", "lastWriteTimeUtc": "2020-03-16T20:39:09.7979594Z", - "queryTimestamp": "2020-09-14T19:53:33.6518004Z", + "queryTimestamp": "2020-09-15T20:57:23.1099559Z", "fileCount": 1, "fileSize": 43007 }, @@ -551,7 +521,7 @@ "status": 1, "timestamp": "2020-05-30T20:18:09.8293985Z", "lastWriteTimeUtc": "2020-05-29T17:49:45.0255325Z", - "queryTimestamp": "2020-09-14T19:53:33.6523202Z", + "queryTimestamp": "2020-09-15T20:57:23.1109535Z", "fileCount": 1, "fileSize": 13333 }, @@ -608,7 +578,7 @@ "status": 1, "timestamp": "2020-04-19T20:24:34.4505908Z", "lastWriteTimeUtc": "2020-04-19T18:30:48.7805931Z", - "queryTimestamp": "2020-09-14T19:53:33.6528372Z", + "queryTimestamp": "2020-09-15T20:57:23.1109535Z", "fileCount": 4, "fileSize": 0 }, @@ -623,7 +593,7 @@ "status": 1, "timestamp": "2020-07-28T18:27:02.8015332Z", "lastWriteTimeUtc": "2020-07-28T15:08:05.7336418Z", - "queryTimestamp": "2020-09-14T19:53:33.6528372Z", + "queryTimestamp": "2020-09-15T20:57:23.1119613Z", "fileCount": 1, "fileSize": 214939 }, @@ -638,7 +608,7 @@ "status": 1, "timestamp": "2020-04-24T20:11:46.9516104Z", "lastWriteTimeUtc": "2020-04-23T19:27:28.1507491Z", - "queryTimestamp": "2020-09-14T19:53:33.6528372Z", + "queryTimestamp": "2020-09-15T20:57:23.1119613Z", "fileCount": 1, "fileSize": 351021 }, @@ -653,7 +623,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.6137419Z", "lastWriteTimeUtc": "2020-03-19T12:11:48.7971619Z", - "queryTimestamp": "2020-09-14T19:53:33.6538241Z", + "queryTimestamp": "2020-09-15T20:57:23.1119613Z", "fileCount": 1, "fileSize": 7221 }, @@ -668,7 +638,7 @@ "status": 1, "timestamp": "2020-06-28T20:55:01.1844582Z", "lastWriteTimeUtc": "2020-06-28T18:28:07.1224138Z", - "queryTimestamp": "2020-09-14T19:53:33.6538241Z", + "queryTimestamp": "2020-09-15T20:57:23.112947Z", "fileCount": 1, "fileSize": 10087 }, @@ -683,39 +653,24 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.2040192Z", "lastWriteTimeUtc": "2020-08-26T18:55:54.4262479Z", - "queryTimestamp": "2020-09-14T19:53:33.6538241Z", + "queryTimestamp": "2020-09-15T20:57:23.112947Z", "fileCount": 1, "fileSize": 283478 }, { - "folderName": "rsgauges-1.15.2-1.2.5-b1.jar", - "fingerprint": 6708036, - "fileDateHash": 1490798863, - "sectionID": 8, - "individualFingerprints": [ - 6708036 - ], - "status": 1, - "timestamp": "2020-07-05T19:54:51.1322734Z", - "lastWriteTimeUtc": "2020-07-05T19:32:41.2579103Z", - "queryTimestamp": "2020-09-14T19:53:33.65582Z", - "fileCount": 1, - "fileSize": 870587 - }, - { - "folderName": "cofh_core-1.15.2-0.6.2b.jar", - "fingerprint": 1198793311, - "fileDateHash": 2180667985, + "folderName": "rsgauges-1.15.2-1.2.5-b2.jar", + "fingerprint": 3937379916, + "fileDateHash": 3449202459, "sectionID": 8, "individualFingerprints": [ - 1198793311 + 3937379916 ], "status": 1, - "timestamp": "2020-09-11T19:00:25.6966514Z", - "lastWriteTimeUtc": "2020-09-11T17:30:53.7321829Z", - "queryTimestamp": "2020-09-14T19:53:33.65582Z", + "timestamp": "2020-09-15T20:57:21.5314396Z", + "lastWriteTimeUtc": "2020-09-15T18:32:47.8243858Z", + "queryTimestamp": "2020-09-15T20:57:23.1139437Z", "fileCount": 1, - "fileSize": 934838 + "fileSize": 870384 }, { "folderName": "AttributeFix-1.15.2-7.0.2.jar", @@ -728,10 +683,55 @@ "status": 1, "timestamp": "2020-04-09T18:58:10.694809Z", "lastWriteTimeUtc": "2020-04-07T18:05:54.7065672Z", - "queryTimestamp": "2020-09-14T19:53:33.6568172Z", + "queryTimestamp": "2020-09-15T20:57:23.1139437Z", "fileCount": 1, "fileSize": 7708 }, + { + "folderName": "mcjtylib-1.15-4.1.8.jar", + "fingerprint": 1864864636, + "fileDateHash": 186596971, + "sectionID": 8, + "individualFingerprints": [ + 1864864636 + ], + "status": 1, + "timestamp": "2020-09-15T20:57:21.4476642Z", + "lastWriteTimeUtc": "2020-09-15T18:34:54.0699694Z", + "queryTimestamp": "2020-09-15T20:57:23.1139437Z", + "fileCount": 1, + "fileSize": 544010 + }, + { + "folderName": "rftoolsstorage-1.15-1.1.10.jar", + "fingerprint": 1378326434, + "fileDateHash": 3344709049, + "sectionID": 8, + "individualFingerprints": [ + 1378326434 + ], + "status": 1, + "timestamp": "2020-09-15T20:57:21.5085022Z", + "lastWriteTimeUtc": "2020-09-15T18:37:09.9591594Z", + "queryTimestamp": "2020-09-15T20:57:23.114941Z", + "fileCount": 1, + "fileSize": 341236 + }, + { + "folderName": "EmendatusEnigmatica-1.15.2-1.0.8.jar", + "fingerprint": 129498183, + "fileDateHash": 2147841203, + "sectionID": 8, + "individualFingerprints": [ + 129498183 + ], + "status": 1, + "timestamp": "2020-09-15T20:57:21.4247266Z", + "lastWriteTimeUtc": "2020-09-15T18:32:36.7975806Z", + "queryTimestamp": "2020-09-15T20:57:23.114941Z", + "fileCount": 1, + "fileSize": 1794326 + }, { "folderName": "minecolonies-0.13.257-ALPHA-universal.jar", "fingerprint": 1121726036, @@ -743,7 +743,7 @@ "status": 1, "timestamp": "2020-09-14T19:53:32.2467917Z", "lastWriteTimeUtc": "2020-09-14T19:07:18.2589029Z", - "queryTimestamp": "2020-09-14T19:53:33.6568172Z", + "queryTimestamp": "2020-09-15T20:57:23.1159382Z", "fileCount": 1, "fileSize": 32707174 }, @@ -758,10 +758,25 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.3439453Z", "lastWriteTimeUtc": "2020-09-01T20:21:47.6293151Z", - "queryTimestamp": "2020-09-14T19:53:33.6578149Z", + "queryTimestamp": "2020-09-15T20:57:23.1159382Z", "fileCount": 1, "fileSize": 8757351 }, + { + "folderName": "thermal_locomotion-1.15.2-0.2.4b.jar", + "fingerprint": 506364233, + "fileDateHash": 3558154484, + "sectionID": 8, + "individualFingerprints": [ + 506364233 + ], + "status": 1, + "timestamp": "2020-09-15T20:57:21.5872903Z", + "lastWriteTimeUtc": "2020-09-15T18:48:10.4351584Z", + "queryTimestamp": "2020-09-15T20:57:23.1169357Z", + "fileCount": 1, + "fileSize": 88631 + }, { "folderName": "TrashSlot_1.15.2-11.0.0.jar", "fingerprint": 787886344, @@ -773,7 +788,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.2302394Z", "lastWriteTimeUtc": "2020-02-02T19:16:54.7099899Z", - "queryTimestamp": "2020-09-14T19:53:33.6578149Z", + "queryTimestamp": "2020-09-15T20:57:23.1169357Z", "fileCount": 1, "fileSize": 60755 }, @@ -788,7 +803,7 @@ "status": 1, "timestamp": "2020-05-02T10:38:45.5850957Z", "lastWriteTimeUtc": "2020-04-29T19:04:35.0450067Z", - "queryTimestamp": "2020-09-14T19:53:33.6578149Z", + "queryTimestamp": "2020-09-15T20:57:23.1169357Z", "fileCount": 1, "fileSize": 45632 }, @@ -803,7 +818,7 @@ "status": 1, "timestamp": "2020-08-24T18:09:44.7805408Z", "lastWriteTimeUtc": "2020-08-23T21:36:56.1377717Z", - "queryTimestamp": "2020-09-14T19:53:33.6588123Z", + "queryTimestamp": "2020-09-15T20:57:23.1179338Z", "fileCount": 1, "fileSize": 5782 }, @@ -818,7 +833,7 @@ "status": 1, "timestamp": "2020-09-12T21:48:28.5943163Z", "lastWriteTimeUtc": "2020-09-12T20:15:52.4834948Z", - "queryTimestamp": "2020-09-14T19:53:33.6588123Z", + "queryTimestamp": "2020-09-15T20:57:23.1179338Z", "fileCount": 1, "fileSize": 90313 }, @@ -833,7 +848,7 @@ "status": 1, "timestamp": "2020-07-12T20:52:14.3239361Z", "lastWriteTimeUtc": "2020-07-12T20:50:09.6306371Z", - "queryTimestamp": "2020-09-14T19:53:33.6588123Z", + "queryTimestamp": "2020-09-15T20:57:23.1189308Z", "fileCount": 1, "fileSize": 33854 }, @@ -848,7 +863,7 @@ "status": 1, "timestamp": "2020-07-28T18:27:02.6120401Z", "lastWriteTimeUtc": "2020-07-28T15:07:02.4242061Z", - "queryTimestamp": "2020-09-14T19:53:33.6598093Z", + "queryTimestamp": "2020-09-15T20:57:23.1189308Z", "fileCount": 1, "fileSize": 526688 }, @@ -863,7 +878,7 @@ "status": 1, "timestamp": "2020-04-27T17:42:51.3063186Z", "lastWriteTimeUtc": "2020-04-27T15:33:51.4648882Z", - "queryTimestamp": "2020-09-14T19:53:33.6598093Z", + "queryTimestamp": "2020-09-15T20:57:23.1189308Z", "fileCount": 1, "fileSize": 22435 }, @@ -878,7 +893,7 @@ "status": 1, "timestamp": "2020-05-12T19:50:08.629166Z", "lastWriteTimeUtc": "2020-05-06T18:04:47.4588772Z", - "queryTimestamp": "2020-09-14T19:53:33.6608061Z", + "queryTimestamp": "2020-09-15T20:57:23.1199283Z", "fileCount": 1, "fileSize": 6001629 }, @@ -893,7 +908,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.5719219Z", "lastWriteTimeUtc": "2020-07-15T19:31:45.1436599Z", - "queryTimestamp": "2020-09-14T19:53:33.6608061Z", + "queryTimestamp": "2020-09-15T20:57:23.1199283Z", "fileCount": 1, "fileSize": 172873 }, @@ -908,7 +923,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.0175737Z", "lastWriteTimeUtc": "2020-02-12T19:28:52.7868916Z", - "queryTimestamp": "2020-09-14T19:53:33.6608061Z", + "queryTimestamp": "2020-09-15T20:57:23.1199283Z", "fileCount": 1, "fileSize": 26924 }, @@ -923,7 +938,7 @@ "status": 1, "timestamp": "2020-06-23T21:12:17.4906112Z", "lastWriteTimeUtc": "2020-06-23T20:58:48.7541904Z", - "queryTimestamp": "2020-09-14T19:53:33.6618032Z", + "queryTimestamp": "2020-09-15T20:57:23.1209251Z", "fileCount": 1, "fileSize": 110257 }, @@ -938,7 +953,7 @@ "status": 1, "timestamp": "2020-07-05T20:34:50.1951183Z", "lastWriteTimeUtc": "2020-07-05T19:58:59.8160713Z", - "queryTimestamp": "2020-09-14T19:53:33.6623242Z", + "queryTimestamp": "2020-09-15T20:57:23.1209251Z", "fileCount": 1, "fileSize": 136653 }, @@ -953,7 +968,7 @@ "status": 1, "timestamp": "2020-04-23T17:56:21.2833436Z", "lastWriteTimeUtc": "2020-04-21T18:02:46.0672783Z", - "queryTimestamp": "2020-09-14T19:53:33.6628502Z", + "queryTimestamp": "2020-09-15T20:57:23.1209251Z", "fileCount": 1, "fileSize": 106396 }, @@ -968,7 +983,7 @@ "status": 1, "timestamp": "2020-07-28T19:15:34.2330354Z", "lastWriteTimeUtc": "2020-04-17T20:51:06.3113272Z", - "queryTimestamp": "2020-09-14T19:53:33.6628502Z", + "queryTimestamp": "2020-09-15T20:57:23.1219228Z", "fileCount": 1, "fileSize": 43869 }, @@ -983,7 +998,7 @@ "status": 1, "timestamp": "2020-05-12T19:50:08.6261743Z", "lastWriteTimeUtc": "2020-05-11T21:42:04.9082Z", - "queryTimestamp": "2020-09-14T19:53:33.6628502Z", + "queryTimestamp": "2020-09-15T20:57:23.1219228Z", "fileCount": 1, "fileSize": 28864 }, @@ -998,7 +1013,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.5652884Z", "lastWriteTimeUtc": "2020-08-16T20:19:08.2951518Z", - "queryTimestamp": "2020-09-14T19:53:33.6638321Z", + "queryTimestamp": "2020-09-15T20:57:23.12292Z", "fileCount": 1, "fileSize": 1064152 }, @@ -1013,7 +1028,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:28.1367478Z", "lastWriteTimeUtc": "2020-06-28T18:11:39.1669761Z", - "queryTimestamp": "2020-09-14T19:53:33.6638321Z", + "queryTimestamp": "2020-09-15T20:57:23.12292Z", "fileCount": 1, "fileSize": 194641 }, @@ -1028,7 +1043,7 @@ "status": 1, "timestamp": "2020-07-28T18:27:02.8055229Z", "lastWriteTimeUtc": "2020-07-28T15:29:37.8167601Z", - "queryTimestamp": "2020-09-14T19:53:33.66483Z", + "queryTimestamp": "2020-09-15T20:57:23.12292Z", "fileCount": 1, "fileSize": 15055 }, @@ -1043,7 +1058,7 @@ "status": 1, "timestamp": "2020-06-20T18:39:30.0686118Z", "lastWriteTimeUtc": "2020-06-19T20:07:01.6855381Z", - "queryTimestamp": "2020-09-14T19:53:33.66483Z", + "queryTimestamp": "2020-09-15T20:57:23.1239175Z", "fileCount": 1, "fileSize": 285238 }, @@ -1058,7 +1073,7 @@ "status": 1, "timestamp": "2020-09-14T19:53:32.4268251Z", "lastWriteTimeUtc": "2020-09-14T19:07:43.213039Z", - "queryTimestamp": "2020-09-14T19:53:33.6668228Z", + "queryTimestamp": "2020-09-15T20:57:23.1239175Z", "fileCount": 1, "fileSize": 402492 }, @@ -1073,7 +1088,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:14.9469034Z", "lastWriteTimeUtc": "2020-02-15T19:18:57.7540181Z", - "queryTimestamp": "2020-09-14T19:53:33.6668228Z", + "queryTimestamp": "2020-09-15T20:57:23.1249156Z", "fileCount": 1, "fileSize": 19175 }, @@ -1088,10 +1103,25 @@ "status": 1, "timestamp": "2020-07-29T20:03:06.9326525Z", "lastWriteTimeUtc": "2020-07-29T18:14:55.594293Z", - "queryTimestamp": "2020-09-14T19:53:33.6668228Z", + "queryTimestamp": "2020-09-15T20:57:23.125915Z", "fileCount": 1, "fileSize": 94030 }, + { + "folderName": "rftoolsbuilder-1.15-2.1.9.jar", + "fingerprint": 1797609927, + "fileDateHash": 3897336501, + "sectionID": 8, + "individualFingerprints": [ + 1797609927 + ], + "status": 1, + "timestamp": "2020-09-15T20:57:21.4865609Z", + "lastWriteTimeUtc": "2020-09-15T18:35:28.9431815Z", + "queryTimestamp": "2020-09-15T20:57:23.125915Z", + "fileCount": 1, + "fileSize": 505451 + }, { "folderName": "MixinBootstrap-1.0.3.jar", "fingerprint": 1852187718, @@ -1103,7 +1133,7 @@ "status": 1, "timestamp": "2020-04-24T20:11:47.0473318Z", "lastWriteTimeUtc": "2020-04-24T19:10:53.1510104Z", - "queryTimestamp": "2020-09-14T19:53:33.667821Z", + "queryTimestamp": "2020-09-15T20:57:23.12691Z", "fileCount": 1, "fileSize": 1061758 }, @@ -1118,7 +1148,7 @@ "status": 1, "timestamp": "2020-08-01T19:42:29.9230787Z", "lastWriteTimeUtc": "2020-08-01T19:17:16.0131545Z", - "queryTimestamp": "2020-09-14T19:53:33.667821Z", + "queryTimestamp": "2020-09-15T20:57:23.12691Z", "fileCount": 1, "fileSize": 136840 }, @@ -1133,7 +1163,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:54.6078488Z", "lastWriteTimeUtc": "2020-08-08T19:12:30.851003Z", - "queryTimestamp": "2020-09-14T19:53:33.6688185Z", + "queryTimestamp": "2020-09-15T20:57:23.12691Z", "fileCount": 1, "fileSize": 213616 }, @@ -1148,7 +1178,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.3339071Z", "lastWriteTimeUtc": "2020-08-09T18:16:07.0878305Z", - "queryTimestamp": "2020-09-14T19:53:33.6688185Z", + "queryTimestamp": "2020-09-15T20:57:23.1279069Z", "fileCount": 1, "fileSize": 68744 }, @@ -1163,7 +1193,7 @@ "status": 1, "timestamp": "2020-06-23T21:12:17.4866225Z", "lastWriteTimeUtc": "2020-06-23T20:58:47.318197Z", - "queryTimestamp": "2020-09-14T19:53:33.6688185Z", + "queryTimestamp": "2020-09-15T20:57:23.1279069Z", "fileCount": 1, "fileSize": 656263 }, @@ -1178,7 +1208,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.9185055Z", "lastWriteTimeUtc": "2020-07-15T19:39:04.8376609Z", - "queryTimestamp": "2020-09-14T19:53:33.6698155Z", + "queryTimestamp": "2020-09-15T20:57:23.128904Z", "fileCount": 1, "fileSize": 28802 }, @@ -1193,24 +1223,39 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.3060467Z", "lastWriteTimeUtc": "2020-09-06T17:59:13.3227305Z", - "queryTimestamp": "2020-09-14T19:53:33.6698155Z", + "queryTimestamp": "2020-09-15T20:57:23.128904Z", "fileCount": 1, "fileSize": 1266175 }, { - "folderName": "thermal_cultivation-1.15.2-0.2.2b.jar", - "fingerprint": 796961753, - "fileDateHash": 2531124584, + "folderName": "Psi r1.2-84.jar", + "fingerprint": 732046085, + "fileDateHash": 798606395, "sectionID": 8, "individualFingerprints": [ - 796961753 + 732046085 ], "status": 1, - "timestamp": "2020-09-11T19:00:26.0503597Z", - "lastWriteTimeUtc": "2020-09-11T18:22:11.3150815Z", - "queryTimestamp": "2020-09-14T19:53:33.6708129Z", + "timestamp": "2020-09-15T20:57:21.4586361Z", + "lastWriteTimeUtc": "2020-09-15T18:35:01.5770586Z", + "queryTimestamp": "2020-09-15T20:57:23.128904Z", "fileCount": 1, - "fileSize": 180673 + "fileSize": 2164229 + }, + { + "folderName": "xnet-1.15-2.1.11.jar", + "fingerprint": 3616884748, + "fileDateHash": 312384291, + "sectionID": 8, + "individualFingerprints": [ + 3616884748 + ], + "status": 1, + "timestamp": "2020-09-15T20:57:21.59527Z", + "lastWriteTimeUtc": "2020-09-15T18:48:15.7252385Z", + "queryTimestamp": "2020-09-15T20:57:23.1299012Z", + "fileCount": 1, + "fileSize": 542250 }, { "folderName": "environmentalcreepers-forge-1.15.2-1.6.1.jar", @@ -1223,7 +1268,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.3352305Z", "lastWriteTimeUtc": "2020-02-02T19:02:43.2274296Z", - "queryTimestamp": "2020-09-14T19:53:33.6708129Z", + "queryTimestamp": "2020-09-15T20:57:23.1299012Z", "fileCount": 1, "fileSize": 29290 }, @@ -1238,7 +1283,7 @@ "status": 1, "timestamp": "2020-05-30T20:18:09.1624265Z", "lastWriteTimeUtc": "2020-05-29T17:49:00.200281Z", - "queryTimestamp": "2020-09-14T19:53:33.6708129Z", + "queryTimestamp": "2020-09-15T20:57:23.1299012Z", "fileCount": 1, "fileSize": 26302 }, @@ -1253,7 +1298,7 @@ "status": 1, "timestamp": "2020-08-23T21:25:47.5011552Z", "lastWriteTimeUtc": "2020-08-23T18:32:10.7543241Z", - "queryTimestamp": "2020-09-14T19:53:33.6718108Z", + "queryTimestamp": "2020-09-15T20:57:23.1308985Z", "fileCount": 1, "fileSize": 181089 }, @@ -1268,7 +1313,7 @@ "status": 1, "timestamp": "2020-07-05T19:54:50.9128542Z", "lastWriteTimeUtc": "2020-07-05T19:32:34.8014186Z", - "queryTimestamp": "2020-09-14T19:53:33.6723271Z", + "queryTimestamp": "2020-09-15T20:57:23.1308985Z", "fileCount": 1, "fileSize": 31045 }, @@ -1283,7 +1328,7 @@ "status": 1, "timestamp": "2020-07-28T18:27:02.6190215Z", "lastWriteTimeUtc": "2020-07-28T15:30:06.1793819Z", - "queryTimestamp": "2020-09-14T19:53:33.6728429Z", + "queryTimestamp": "2020-09-15T20:57:23.1318958Z", "fileCount": 1, "fileSize": 221036 }, @@ -1298,7 +1343,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.2132847Z", "lastWriteTimeUtc": "2020-01-31T20:43:54.6728296Z", - "queryTimestamp": "2020-09-14T19:53:33.6728429Z", + "queryTimestamp": "2020-09-15T20:57:23.1318958Z", "fileCount": 1, "fileSize": 52700 }, @@ -1313,7 +1358,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:17.0961952Z", "lastWriteTimeUtc": "2020-03-04T20:14:32.90897Z", - "queryTimestamp": "2020-09-14T19:53:33.6728429Z", + "queryTimestamp": "2020-09-15T20:57:23.1318958Z", "fileCount": 1, "fileSize": 148043 }, @@ -1426,7 +1471,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:26.1062104Z", "lastWriteTimeUtc": "2020-09-08T19:07:41.8406272Z", - "queryTimestamp": "2020-09-14T19:53:33.6738312Z", + "queryTimestamp": "2020-09-15T20:57:23.1328933Z", "fileCount": 19, "fileSize": 0 }, @@ -1441,7 +1486,7 @@ "status": 1, "timestamp": "2020-07-28T15:05:53.3330682Z", "lastWriteTimeUtc": "2020-07-27T18:00:48.2268748Z", - "queryTimestamp": "2020-09-14T19:53:33.6738312Z", + "queryTimestamp": "2020-09-15T20:57:23.1328933Z", "fileCount": 1, "fileSize": 12014 }, @@ -1456,7 +1501,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.8043627Z", "lastWriteTimeUtc": "2020-09-07T18:32:45.6635508Z", - "queryTimestamp": "2020-09-14T19:53:33.6738312Z", + "queryTimestamp": "2020-09-15T20:57:23.1328933Z", "fileCount": 1, "fileSize": 436444 }, @@ -1471,7 +1516,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.2189261Z", "lastWriteTimeUtc": "2020-03-28T07:47:21.0065198Z", - "queryTimestamp": "2020-09-14T19:53:33.674829Z", + "queryTimestamp": "2020-09-15T20:57:23.1338911Z", "fileCount": 1, "fileSize": 457642 }, @@ -1486,25 +1531,10 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.8610743Z", "lastWriteTimeUtc": "2020-09-03T10:46:32.9588313Z", - "queryTimestamp": "2020-09-14T19:53:33.674829Z", + "queryTimestamp": "2020-09-15T20:57:23.1338911Z", "fileCount": 1, "fileSize": 100968 }, - { - "folderName": "rftoolsbase-1.15-1.1.6.jar", - "fingerprint": 446037566, - "fileDateHash": 2422657353, - "sectionID": 8, - "individualFingerprints": [ - 446037566 - ], - "status": 1, - "timestamp": "2020-09-06T18:29:35.7553617Z", - "lastWriteTimeUtc": "2020-08-28T17:41:23.7575429Z", - "queryTimestamp": "2020-09-14T19:53:33.6758263Z", - "fileCount": 1, - "fileSize": 380255 - }, { "folderName": "damage_indicator-0.1.0.jar", "fingerprint": 2025982144, @@ -1516,7 +1546,7 @@ "status": 1, "timestamp": "2020-07-12T21:58:57.5607209Z", "lastWriteTimeUtc": "2020-07-12T21:56:47.1201037Z", - "queryTimestamp": "2020-09-14T19:53:33.6768239Z", + "queryTimestamp": "2020-09-15T20:57:23.1348878Z", "fileCount": 1, "fileSize": 44964 }, @@ -1531,7 +1561,7 @@ "status": 1, "timestamp": "2020-04-11T21:04:09.9121449Z", "lastWriteTimeUtc": "2020-04-11T20:11:23.9892716Z", - "queryTimestamp": "2020-09-14T19:53:33.6768239Z", + "queryTimestamp": "2020-09-15T20:57:23.1348878Z", "fileCount": 1, "fileSize": 64160 }, @@ -1546,7 +1576,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.3329742Z", "lastWriteTimeUtc": "2020-08-26T18:54:35.981272Z", - "queryTimestamp": "2020-09-14T19:53:33.6778202Z", + "queryTimestamp": "2020-09-15T20:57:23.1358856Z", "fileCount": 1, "fileSize": 88411 }, @@ -1600,7 +1630,7 @@ "status": 1, "timestamp": "2020-04-25T19:40:39.1759545Z", "lastWriteTimeUtc": "2020-04-25T19:28:23.8863966Z", - "queryTimestamp": "2020-09-14T19:53:33.6778202Z", + "queryTimestamp": "2020-09-15T20:57:23.1358856Z", "fileCount": 4, "fileSize": 0 }, @@ -1615,7 +1645,7 @@ "status": 1, "timestamp": "2020-06-10T19:27:04.5544506Z", "lastWriteTimeUtc": "2020-06-10T18:47:34.8287883Z", - "queryTimestamp": "2020-09-14T19:53:33.6788173Z", + "queryTimestamp": "2020-09-15T20:57:23.1358856Z", "fileCount": 1, "fileSize": 378820 }, @@ -1630,7 +1660,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.7174579Z", "lastWriteTimeUtc": "2020-09-03T10:45:35.2851837Z", - "queryTimestamp": "2020-09-14T19:53:33.6788173Z", + "queryTimestamp": "2020-09-15T20:57:23.1368826Z", "fileCount": 1, "fileSize": 1470987 }, @@ -1645,7 +1675,7 @@ "status": 1, "timestamp": "2020-05-30T20:18:09.0896272Z", "lastWriteTimeUtc": "2020-05-25T16:29:20.8580173Z", - "queryTimestamp": "2020-09-14T19:53:33.679815Z", + "queryTimestamp": "2020-09-15T20:57:23.1368826Z", "fileCount": 1, "fileSize": 178961 }, @@ -1660,7 +1690,7 @@ "status": 1, "timestamp": "2020-06-30T18:26:43.1084057Z", "lastWriteTimeUtc": "2020-06-30T18:07:45.2831258Z", - "queryTimestamp": "2020-09-14T19:53:33.679815Z", + "queryTimestamp": "2020-09-15T20:57:23.1368826Z", "fileCount": 1, "fileSize": 10068 }, @@ -1675,7 +1705,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.7694564Z", "lastWriteTimeUtc": "2020-09-07T18:32:50.8068889Z", - "queryTimestamp": "2020-09-14T19:53:33.679815Z", + "queryTimestamp": "2020-09-15T20:57:23.1378799Z", "fileCount": 1, "fileSize": 305334 }, @@ -1690,7 +1720,7 @@ "status": 1, "timestamp": "2020-08-22T20:48:49.9667653Z", "lastWriteTimeUtc": "2020-08-22T18:26:36.1682487Z", - "queryTimestamp": "2020-09-14T19:53:33.6808125Z", + "queryTimestamp": "2020-09-15T20:57:23.1378799Z", "fileCount": 1, "fileSize": 931074 }, @@ -1705,7 +1735,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.7451345Z", "lastWriteTimeUtc": "2020-01-31T20:26:11.1820655Z", - "queryTimestamp": "2020-09-14T19:53:33.6808125Z", + "queryTimestamp": "2020-09-15T20:57:23.138877Z", "fileCount": 1, "fileSize": 49879 }, @@ -1720,10 +1750,25 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.6787016Z", "lastWriteTimeUtc": "2020-09-09T18:42:13.4451256Z", - "queryTimestamp": "2020-09-14T19:53:33.6818105Z", + "queryTimestamp": "2020-09-15T20:57:23.138877Z", "fileCount": 1, "fileSize": 179846 }, + { + "folderName": "thermal_expansion-1.15.2-0.2.5b.jar", + "fingerprint": 2837275031, + "fileDateHash": 3567149871, + "sectionID": 8, + "individualFingerprints": [ + 2837275031 + ], + "status": 1, + "timestamp": "2020-09-15T20:57:21.5753243Z", + "lastWriteTimeUtc": "2020-09-15T18:37:18.3851936Z", + "queryTimestamp": "2020-09-15T20:57:23.138877Z", + "fileCount": 1, + "fileSize": 672907 + }, { "folderName": "morevanillalib-1.15.2-1.2.4.jar", "fingerprint": 3438588104, @@ -1735,7 +1780,7 @@ "status": 1, "timestamp": "2020-05-14T19:49:33.4675234Z", "lastWriteTimeUtc": "2020-05-14T19:13:51.3778585Z", - "queryTimestamp": "2020-09-14T19:53:33.6823323Z", + "queryTimestamp": "2020-09-15T20:57:23.1398745Z", "fileCount": 1, "fileSize": 98377 }, @@ -1760,7 +1805,7 @@ "status": 1, "timestamp": "2020-08-22T20:48:50.4141071Z", "lastWriteTimeUtc": "2020-08-19T20:34:45.0948029Z", - "queryTimestamp": "2020-09-14T19:53:33.6823323Z", + "queryTimestamp": "2020-09-15T20:57:23.1398745Z", "fileCount": 1, "fileSize": 0 }, @@ -1775,25 +1820,10 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.7485124Z", "lastWriteTimeUtc": "2020-09-09T18:42:48.4502681Z", - "queryTimestamp": "2020-09-14T19:53:33.6828504Z", + "queryTimestamp": "2020-09-15T20:57:23.1398745Z", "fileCount": 1, "fileSize": 118826 }, - { - "folderName": "thermal_locomotion-1.15.2-0.2.2b.jar", - "fingerprint": 2963308900, - "fileDateHash": 1811351487, - "sectionID": 8, - "individualFingerprints": [ - 2963308900 - ], - "status": 1, - "timestamp": "2020-09-11T19:00:26.0802795Z", - "lastWriteTimeUtc": "2020-09-11T18:22:25.0417759Z", - "queryTimestamp": "2020-09-14T19:53:33.6828504Z", - "fileCount": 1, - "fileSize": 88627 - }, { "folderName": "LetSleepingDogsLie-1.15.2-1.1.1.jar", "fingerprint": 2842524838, @@ -1805,7 +1835,7 @@ "status": 1, "timestamp": "2020-06-30T18:26:43.1084057Z", "lastWriteTimeUtc": "2020-06-30T18:08:07.6781465Z", - "queryTimestamp": "2020-09-14T19:53:33.6838368Z", + "queryTimestamp": "2020-09-15T20:57:23.1408723Z", "fileCount": 1, "fileSize": 20451 }, @@ -1820,25 +1850,10 @@ "status": 1, "timestamp": "2020-03-05T20:00:15.6635198Z", "lastWriteTimeUtc": "2020-02-12T19:28:55.5965332Z", - "queryTimestamp": "2020-09-14T19:53:33.6838368Z", + "queryTimestamp": "2020-09-15T20:57:23.1408723Z", "fileCount": 1, "fileSize": 45303 }, - { - "folderName": "thermal_expansion-1.15.2-0.2.3b.jar", - "fingerprint": 788838119, - "fileDateHash": 3534956658, - "sectionID": 8, - "individualFingerprints": [ - 788838119 - ], - "status": 1, - "timestamp": "2020-09-12T21:48:28.6082786Z", - "lastWriteTimeUtc": "2020-09-12T07:46:36.3056326Z", - "queryTimestamp": "2020-09-14T19:53:33.6838368Z", - "fileCount": 1, - "fileSize": 642595 - }, { "folderName": "NaturesAura-28.5.jar", "fingerprint": 4085603724, @@ -1850,25 +1865,10 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.6506378Z", "lastWriteTimeUtc": "2020-09-03T10:45:18.9094288Z", - "queryTimestamp": "2020-09-14T19:53:33.6848356Z", + "queryTimestamp": "2020-09-15T20:57:23.1418695Z", "fileCount": 1, "fileSize": 1270968 }, - { - "folderName": "thermal-1.15.2-0.2.3b.jar", - "fingerprint": 2277925553, - "fileDateHash": 3816591491, - "sectionID": 8, - "individualFingerprints": [ - 2277925553 - ], - "status": 1, - "timestamp": "2020-09-12T21:48:28.5943163Z", - "lastWriteTimeUtc": "2020-09-12T07:47:01.8396103Z", - "queryTimestamp": "2020-09-14T19:53:33.6848356Z", - "fileCount": 1, - "fileSize": 2585554 - }, { "folderName": "OldJavaWarning-1.15.2-3.0.2.jar", "fingerprint": 1104167256, @@ -1880,7 +1880,7 @@ "status": 1, "timestamp": "2020-06-16T19:13:01.6636638Z", "lastWriteTimeUtc": "2020-06-13T18:29:31.0969234Z", - "queryTimestamp": "2020-09-14T19:53:33.6858319Z", + "queryTimestamp": "2020-09-15T20:57:23.1418695Z", "fileCount": 1, "fileSize": 9165 }, @@ -1895,7 +1895,7 @@ "status": 1, "timestamp": "2020-03-11T21:26:00.3842104Z", "lastWriteTimeUtc": "2020-03-11T21:11:38.7583031Z", - "queryTimestamp": "2020-09-14T19:53:33.6858319Z", + "queryTimestamp": "2020-09-15T20:57:23.1418695Z", "fileCount": 1, "fileSize": 24547 }, @@ -1910,7 +1910,7 @@ "status": 1, "timestamp": "2020-07-05T19:54:50.9548915Z", "lastWriteTimeUtc": "2020-07-05T19:32:56.3530557Z", - "queryTimestamp": "2020-09-14T19:53:33.6858319Z", + "queryTimestamp": "2020-09-15T20:57:23.1428669Z", "fileCount": 1, "fileSize": 222173 }, @@ -1925,7 +1925,7 @@ "status": 1, "timestamp": "2020-04-03T18:13:43.546263Z", "lastWriteTimeUtc": "2020-04-02T19:51:26.5653834Z", - "queryTimestamp": "2020-09-14T19:53:33.6868294Z", + "queryTimestamp": "2020-09-15T20:57:23.1428669Z", "fileCount": 1, "fileSize": 37695 }, @@ -1940,7 +1940,7 @@ "status": 1, "timestamp": "2020-05-22T18:16:52.8671082Z", "lastWriteTimeUtc": "2020-05-21T17:50:02.7774293Z", - "queryTimestamp": "2020-09-14T19:53:33.6878267Z", + "queryTimestamp": "2020-09-15T20:57:23.1428669Z", "fileCount": 1, "fileSize": 184782 }, @@ -1989,7 +1989,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.6397672Z", "lastWriteTimeUtc": "2020-03-20T22:16:00.7927455Z", - "queryTimestamp": "2020-09-14T19:53:33.6888237Z", + "queryTimestamp": "2020-09-15T20:57:23.143864Z", "fileCount": 5, "fileSize": 0 }, @@ -2116,7 +2116,7 @@ "status": 1, "timestamp": "2020-07-26T18:51:05.137818Z", "lastWriteTimeUtc": "2020-07-25T20:26:39.2059421Z", - "queryTimestamp": "2020-09-14T19:53:33.6888237Z", + "queryTimestamp": "2020-09-15T20:57:23.143864Z", "fileCount": 1, "fileSize": 133859 }, @@ -2131,7 +2131,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.3688138Z", "lastWriteTimeUtc": "2020-08-05T20:53:09.7169604Z", - "queryTimestamp": "2020-09-14T19:53:33.6888237Z", + "queryTimestamp": "2020-09-15T20:57:23.1448611Z", "fileCount": 1, "fileSize": 465175 }, @@ -2146,7 +2146,7 @@ "status": 1, "timestamp": "2020-08-05T18:12:12.1166896Z", "lastWriteTimeUtc": "2020-08-04T19:51:29.781768Z", - "queryTimestamp": "2020-09-14T19:53:33.6898215Z", + "queryTimestamp": "2020-09-15T20:57:23.1458586Z", "fileCount": 1, "fileSize": 2075503 }, @@ -2161,7 +2161,7 @@ "status": 1, "timestamp": "2020-06-16T19:13:01.7693814Z", "lastWriteTimeUtc": "2020-06-15T19:22:53.4035511Z", - "queryTimestamp": "2020-09-14T19:53:33.6898215Z", + "queryTimestamp": "2020-09-15T20:57:23.1458586Z", "fileCount": 1, "fileSize": 546613 }, @@ -2176,7 +2176,7 @@ "status": 1, "timestamp": "2020-07-29T20:03:06.8977467Z", "lastWriteTimeUtc": "2020-07-29T18:14:33.4268681Z", - "queryTimestamp": "2020-09-14T19:53:33.6908184Z", + "queryTimestamp": "2020-09-15T20:57:23.1458586Z", "fileCount": 1, "fileSize": 122714 }, @@ -2191,7 +2191,7 @@ "status": 1, "timestamp": "2020-07-03T20:47:54.4709286Z", "lastWriteTimeUtc": "2020-07-03T17:44:33.3346852Z", - "queryTimestamp": "2020-09-14T19:53:33.6908184Z", + "queryTimestamp": "2020-09-15T20:57:23.146856Z", "fileCount": 1, "fileSize": 38291 }, @@ -2206,7 +2206,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.5679578Z", "lastWriteTimeUtc": "2020-07-15T19:39:51.2081035Z", - "queryTimestamp": "2020-09-14T19:53:33.6908184Z", + "queryTimestamp": "2020-09-15T20:57:23.146856Z", "fileCount": 1, "fileSize": 29171 }, @@ -2221,7 +2221,7 @@ "status": 1, "timestamp": "2020-06-10T19:27:04.6671907Z", "lastWriteTimeUtc": "2020-06-10T18:54:51.9441942Z", - "queryTimestamp": "2020-09-14T19:53:33.6918156Z", + "queryTimestamp": "2020-09-15T20:57:23.146856Z", "fileCount": 1, "fileSize": 0 }, @@ -2236,7 +2236,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.1579655Z", "lastWriteTimeUtc": "2020-03-25T20:28:05.8454718Z", - "queryTimestamp": "2020-09-14T19:53:33.6918156Z", + "queryTimestamp": "2020-09-15T20:57:23.1478532Z", "fileCount": 1, "fileSize": 58933 }, @@ -2251,7 +2251,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.736545Z", "lastWriteTimeUtc": "2020-09-11T17:32:00.6628361Z", - "queryTimestamp": "2020-09-14T19:53:33.6923312Z", + "queryTimestamp": "2020-09-15T20:57:23.1478532Z", "fileCount": 1, "fileSize": 803742 }, @@ -2266,7 +2266,7 @@ "status": 1, "timestamp": "2020-04-14T19:45:16.9359843Z", "lastWriteTimeUtc": "2020-04-13T21:00:53.109831Z", - "queryTimestamp": "2020-09-14T19:53:33.6928467Z", + "queryTimestamp": "2020-09-15T20:57:23.1478532Z", "fileCount": 1, "fileSize": 52991 }, @@ -2281,7 +2281,7 @@ "status": 1, "timestamp": "2020-06-16T19:13:01.6995676Z", "lastWriteTimeUtc": "2020-06-15T19:22:41.4055227Z", - "queryTimestamp": "2020-09-14T19:53:33.6928467Z", + "queryTimestamp": "2020-09-15T20:57:23.1488504Z", "fileCount": 1, "fileSize": 5424185 }, @@ -2296,7 +2296,7 @@ "status": 1, "timestamp": "2020-08-22T20:48:50.1043984Z", "lastWriteTimeUtc": "2020-08-22T18:32:27.1396422Z", - "queryTimestamp": "2020-09-14T19:53:33.6928467Z", + "queryTimestamp": "2020-09-15T20:57:23.1488504Z", "fileCount": 1, "fileSize": 36224 }, @@ -2311,7 +2311,7 @@ "status": 1, "timestamp": "2020-04-11T21:04:09.9111483Z", "lastWriteTimeUtc": "2020-04-11T20:11:20.8147829Z", - "queryTimestamp": "2020-09-14T19:53:33.6938352Z", + "queryTimestamp": "2020-09-15T20:57:23.1498476Z", "fileCount": 1, "fileSize": 67000 }, @@ -2326,7 +2326,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.5739152Z", "lastWriteTimeUtc": "2020-07-21T19:55:17.8910255Z", - "queryTimestamp": "2020-09-14T19:53:33.6938352Z", + "queryTimestamp": "2020-09-15T20:57:23.1498476Z", "fileCount": 1, "fileSize": 226380 }, @@ -2341,7 +2341,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.7188776Z", "lastWriteTimeUtc": "2020-08-17T18:51:05.7988979Z", - "queryTimestamp": "2020-09-14T19:53:33.6948321Z", + "queryTimestamp": "2020-09-15T20:57:23.1498476Z", "fileCount": 1, "fileSize": 312477 }, @@ -2356,7 +2356,7 @@ "status": 1, "timestamp": "2020-04-03T18:13:43.5362895Z", "lastWriteTimeUtc": "2020-04-01T18:01:32.0628661Z", - "queryTimestamp": "2020-09-14T19:53:33.6948321Z", + "queryTimestamp": "2020-09-15T20:57:23.1508454Z", "fileCount": 1, "fileSize": 202515 }, @@ -2371,7 +2371,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.833732Z", "lastWriteTimeUtc": "2020-07-15T19:38:41.6852779Z", - "queryTimestamp": "2020-09-14T19:53:33.6948321Z", + "queryTimestamp": "2020-09-15T20:57:23.1508454Z", "fileCount": 1, "fileSize": 133368 }, @@ -2386,7 +2386,7 @@ "status": 1, "timestamp": "2020-04-23T19:27:08.9867424Z", "lastWriteTimeUtc": "2020-04-23T18:01:56.3990018Z", - "queryTimestamp": "2020-09-14T19:53:33.6958315Z", + "queryTimestamp": "2020-09-15T20:57:23.1508454Z", "fileCount": 1, "fileSize": 39737 }, @@ -2401,7 +2401,7 @@ "status": 1, "timestamp": "2020-04-19T09:24:04.4380619Z", "lastWriteTimeUtc": "2020-04-18T08:47:00.1753031Z", - "queryTimestamp": "2020-09-14T19:53:33.6958315Z", + "queryTimestamp": "2020-09-15T20:57:23.1518426Z", "fileCount": 1, "fileSize": 66351 }, @@ -2416,7 +2416,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.1503756Z", "lastWriteTimeUtc": "2020-01-31T19:36:24.947709Z", - "queryTimestamp": "2020-09-14T19:53:33.696827Z", + "queryTimestamp": "2020-09-15T20:57:23.1518426Z", "fileCount": 1, "fileSize": 22827 }, @@ -2431,7 +2431,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.1621861Z", "lastWriteTimeUtc": "2020-02-13T19:40:45.0589218Z", - "queryTimestamp": "2020-09-14T19:53:33.696827Z", + "queryTimestamp": "2020-09-15T20:57:23.1518426Z", "fileCount": 1, "fileSize": 14518 }, @@ -2476,7 +2476,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.7829034Z", "lastWriteTimeUtc": "2020-03-22T19:31:37.9246799Z", - "queryTimestamp": "2020-09-14T19:53:33.6978239Z", + "queryTimestamp": "2020-09-15T20:57:23.1528398Z", "fileCount": 5, "fileSize": 0 }, @@ -2491,7 +2491,7 @@ "status": 1, "timestamp": "2020-04-14T19:45:17.1264747Z", "lastWriteTimeUtc": "2020-04-13T21:00:25.3989185Z", - "queryTimestamp": "2020-09-14T19:53:33.6978239Z", + "queryTimestamp": "2020-09-15T20:57:23.1528398Z", "fileCount": 1, "fileSize": 8864 }, @@ -2506,7 +2506,7 @@ "status": 1, "timestamp": "2020-07-26T18:51:05.1577558Z", "lastWriteTimeUtc": "2020-07-26T18:26:10.1605161Z", - "queryTimestamp": "2020-09-14T19:53:33.6998192Z", + "queryTimestamp": "2020-09-15T20:57:23.1538372Z", "fileCount": 1, "fileSize": 7854 }, @@ -2521,7 +2521,7 @@ "status": 1, "timestamp": "2020-07-05T19:54:51.130279Z", "lastWriteTimeUtc": "2020-07-05T19:33:29.7240208Z", - "queryTimestamp": "2020-09-14T19:53:33.6998192Z", + "queryTimestamp": "2020-09-15T20:57:23.1538372Z", "fileCount": 1, "fileSize": 95520 }, @@ -2536,7 +2536,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:27.8564973Z", "lastWriteTimeUtc": "2020-06-28T18:09:28.8471442Z", - "queryTimestamp": "2020-09-14T19:53:33.6998192Z", + "queryTimestamp": "2020-09-15T20:57:23.1538372Z", "fileCount": 1, "fileSize": 61881 }, @@ -2551,7 +2551,7 @@ "status": 1, "timestamp": "2020-06-16T19:13:01.4382664Z", "lastWriteTimeUtc": "2020-06-12T19:16:16.9260345Z", - "queryTimestamp": "2020-09-14T19:53:33.7008167Z", + "queryTimestamp": "2020-09-15T20:57:23.1548347Z", "fileCount": 1, "fileSize": 50235 }, @@ -2566,7 +2566,7 @@ "status": 1, "timestamp": "2020-07-30T19:23:09.5264131Z", "lastWriteTimeUtc": "2020-07-30T18:32:39.8972549Z", - "queryTimestamp": "2020-09-14T19:53:33.7008167Z", + "queryTimestamp": "2020-09-15T20:57:23.1548347Z", "fileCount": 1, "fileSize": 1352240 }, @@ -2581,7 +2581,7 @@ "status": 1, "timestamp": "2020-06-20T18:39:29.7985972Z", "lastWriteTimeUtc": "2020-06-19T20:04:30.336406Z", - "queryTimestamp": "2020-09-14T19:53:33.7008167Z", + "queryTimestamp": "2020-09-15T20:57:23.1558321Z", "fileCount": 1, "fileSize": 88282 }, @@ -2596,7 +2596,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.3408897Z", "lastWriteTimeUtc": "2020-08-15T20:53:02.6446633Z", - "queryTimestamp": "2020-09-14T19:53:33.7018137Z", + "queryTimestamp": "2020-09-15T20:57:23.1558321Z", "fileCount": 1, "fileSize": 255297 }, @@ -2611,7 +2611,7 @@ "status": 1, "timestamp": "2020-07-28T15:05:53.3380538Z", "lastWriteTimeUtc": "2020-07-26T21:37:05.5452468Z", - "queryTimestamp": "2020-09-14T19:53:33.7023289Z", + "queryTimestamp": "2020-09-15T20:57:23.1568294Z", "fileCount": 1, "fileSize": 10601 }, @@ -2659,7 +2659,7 @@ "status": 1, "timestamp": "2020-04-04T19:20:31.1848991Z", "lastWriteTimeUtc": "2020-04-04T19:15:56.0244759Z", - "queryTimestamp": "2020-09-14T19:53:33.7028446Z", + "queryTimestamp": "2020-09-15T20:57:23.1568294Z", "fileCount": 4, "fileSize": 0 }, @@ -2674,7 +2674,7 @@ "status": 1, "timestamp": "2020-07-05T20:34:49.7841116Z", "lastWriteTimeUtc": "2020-07-05T19:58:31.7767358Z", - "queryTimestamp": "2020-09-14T19:53:33.7028446Z", + "queryTimestamp": "2020-09-15T20:57:23.1568294Z", "fileCount": 1, "fileSize": 76502452 }, @@ -2689,7 +2689,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.2249622Z", "lastWriteTimeUtc": "2020-08-26T18:54:29.0650898Z", - "queryTimestamp": "2020-09-14T19:53:33.7028446Z", + "queryTimestamp": "2020-09-15T20:57:23.1578272Z", "fileCount": 1, "fileSize": 13313 }, @@ -2704,24 +2704,24 @@ "status": 1, "timestamp": "2020-07-05T19:54:50.9128542Z", "lastWriteTimeUtc": "2020-07-05T19:32:49.1907909Z", - "queryTimestamp": "2020-09-14T19:53:33.7038322Z", + "queryTimestamp": "2020-09-15T20:57:23.1578272Z", "fileCount": 1, "fileSize": 7105895 }, { - "folderName": "thermal_innovation-1.15.2-0.2.2b.jar", - "fingerprint": 623559186, - "fileDateHash": 675429513, + "folderName": "thermal_innovation-1.15.2-0.2.4b.jar", + "fingerprint": 1571852758, + "fileDateHash": 2864533725, "sectionID": 8, "individualFingerprints": [ - 623559186 + 1571852758 ], "status": 1, - "timestamp": "2020-09-11T19:00:26.0713036Z", - "lastWriteTimeUtc": "2020-09-11T18:22:16.9879454Z", - "queryTimestamp": "2020-09-14T19:53:33.7038322Z", + "timestamp": "2020-09-15T20:57:21.5862932Z", + "lastWriteTimeUtc": "2020-09-15T18:40:14.7045468Z", + "queryTimestamp": "2020-09-15T20:57:23.1578272Z", "fileCount": 1, - "fileSize": 93664 + "fileSize": 93682 }, { "folderName": "pneumaticcraft-repressurized-1.15.2-1.4.5-69.jar", @@ -2734,7 +2734,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.6665946Z", "lastWriteTimeUtc": "2020-09-03T10:45:29.2991952Z", - "queryTimestamp": "2020-09-14T19:53:33.7038322Z", + "queryTimestamp": "2020-09-15T20:57:23.158825Z", "fileCount": 1, "fileSize": 6270790 }, @@ -2749,7 +2749,7 @@ "status": 1, "timestamp": "2020-07-10T18:30:10.2507122Z", "lastWriteTimeUtc": "2020-07-10T18:19:36.6449567Z", - "queryTimestamp": "2020-09-14T19:53:33.7048293Z", + "queryTimestamp": "2020-09-15T20:57:23.158825Z", "fileCount": 1, "fileSize": 277923 }, @@ -2764,7 +2764,7 @@ "status": 1, "timestamp": "2020-04-20T17:40:38.833043Z", "lastWriteTimeUtc": "2020-04-20T17:23:51.7857358Z", - "queryTimestamp": "2020-09-14T19:53:33.7048293Z", + "queryTimestamp": "2020-09-15T20:57:23.1598218Z", "fileCount": 1, "fileSize": 1852 }, @@ -2779,7 +2779,7 @@ "status": 1, "timestamp": "2020-07-28T19:52:33.784929Z", "lastWriteTimeUtc": "2020-04-17T20:51:06.3183113Z", - "queryTimestamp": "2020-09-14T19:53:33.7058268Z", + "queryTimestamp": "2020-09-15T20:57:23.1598218Z", "fileCount": 1, "fileSize": 382909 }, @@ -2794,7 +2794,7 @@ "status": 1, "timestamp": "2020-07-03T20:47:54.4868857Z", "lastWriteTimeUtc": "2020-07-03T17:44:45.2483763Z", - "queryTimestamp": "2020-09-14T19:53:33.7058268Z", + "queryTimestamp": "2020-09-15T20:57:23.1598218Z", "fileCount": 1, "fileSize": 1560489 }, @@ -2809,7 +2809,7 @@ "status": 1, "timestamp": "2020-04-09T18:58:10.7317094Z", "lastWriteTimeUtc": "2020-04-07T18:05:56.2205335Z", - "queryTimestamp": "2020-09-14T19:53:33.7058268Z", + "queryTimestamp": "2020-09-15T20:57:23.1608203Z", "fileCount": 1, "fileSize": 6349 }, @@ -2824,7 +2824,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.5178854Z", "lastWriteTimeUtc": "2020-03-16T20:43:02.3922751Z", - "queryTimestamp": "2020-09-14T19:53:33.7068236Z", + "queryTimestamp": "2020-09-15T20:57:23.1608203Z", "fileCount": 1, "fileSize": 3845 }, @@ -2839,7 +2839,7 @@ "status": 1, "timestamp": "2020-08-01T19:06:07.5619978Z", "lastWriteTimeUtc": "2020-08-01T18:41:29.6366098Z", - "queryTimestamp": "2020-09-14T19:53:33.7068236Z", + "queryTimestamp": "2020-09-15T20:57:23.161818Z", "fileCount": 1, "fileSize": 14776702 }, @@ -2854,7 +2854,7 @@ "status": 1, "timestamp": "2020-08-03T19:57:20.7805583Z", "lastWriteTimeUtc": "2020-08-03T18:57:09.9957579Z", - "queryTimestamp": "2020-09-14T19:53:33.7068236Z", + "queryTimestamp": "2020-09-15T20:57:23.161818Z", "fileCount": 1, "fileSize": 184356 }, @@ -2869,7 +2869,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.8546775Z", "lastWriteTimeUtc": "2020-07-15T19:38:46.0414896Z", - "queryTimestamp": "2020-09-14T19:53:33.7078218Z", + "queryTimestamp": "2020-09-15T20:57:23.162814Z", "fileCount": 1, "fileSize": 533222 }, @@ -2884,7 +2884,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.9065379Z", "lastWriteTimeUtc": "2020-07-14T20:20:56.8914823Z", - "queryTimestamp": "2020-09-14T19:53:33.7078218Z", + "queryTimestamp": "2020-09-15T20:57:23.162814Z", "fileCount": 1, "fileSize": 1890686 }, @@ -2899,7 +2899,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.0556307Z", "lastWriteTimeUtc": "2020-03-02T19:23:07.6207453Z", - "queryTimestamp": "2020-09-14T19:53:33.7078218Z", + "queryTimestamp": "2020-09-15T20:57:23.1638108Z", "fileCount": 1, "fileSize": 207348 }, @@ -2914,7 +2914,7 @@ "status": 1, "timestamp": "2020-08-24T18:09:44.7805408Z", "lastWriteTimeUtc": "2020-08-24T18:00:38.7607117Z", - "queryTimestamp": "2020-09-14T19:53:33.7098162Z", + "queryTimestamp": "2020-09-15T20:57:23.1638108Z", "fileCount": 1, "fileSize": 306949 }, @@ -2929,7 +2929,7 @@ "status": 1, "timestamp": "2020-08-24T18:09:44.5956861Z", "lastWriteTimeUtc": "2020-08-23T21:25:56.5265628Z", - "queryTimestamp": "2020-09-14T19:53:33.7098162Z", + "queryTimestamp": "2020-09-15T20:57:23.1638108Z", "fileCount": 1, "fileSize": 241877 }, @@ -2944,7 +2944,7 @@ "status": 1, "timestamp": "2020-08-22T20:48:50.075475Z", "lastWriteTimeUtc": "2020-08-22T20:04:50.9279373Z", - "queryTimestamp": "2020-09-14T19:53:33.7108135Z", + "queryTimestamp": "2020-09-15T20:57:23.1648082Z", "fileCount": 1, "fileSize": 853753 }, @@ -2959,7 +2959,7 @@ "status": 1, "timestamp": "2020-04-23T19:27:09.1313554Z", "lastWriteTimeUtc": "2020-04-23T18:01:44.4215356Z", - "queryTimestamp": "2020-09-14T19:53:33.7108135Z", + "queryTimestamp": "2020-09-15T20:57:23.1648082Z", "fileCount": 1, "fileSize": 4891 }, @@ -2974,7 +2974,7 @@ "status": 1, "timestamp": "2020-09-13T20:07:00.721612Z", "lastWriteTimeUtc": "2020-09-13T18:29:29.0456379Z", - "queryTimestamp": "2020-09-14T20:07:28.9356691Z", + "queryTimestamp": "2020-09-15T20:57:23.1658056Z", "fileCount": 1, "fileSize": 23836 }, @@ -2989,40 +2989,10 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.7165984Z", "lastWriteTimeUtc": "2020-09-11T17:31:57.1850103Z", - "queryTimestamp": "2020-09-14T19:53:33.7123559Z", + "queryTimestamp": "2020-09-15T20:57:23.1658056Z", "fileCount": 1, "fileSize": 2187540 }, - { - "folderName": "rftoolsstorage-1.15-1.1.9.jar", - "fingerprint": 301778956, - "fileDateHash": 3810757538, - "sectionID": 8, - "individualFingerprints": [ - 301778956 - ], - "status": 1, - "timestamp": "2020-09-06T18:29:35.786276Z", - "lastWriteTimeUtc": "2020-08-28T18:44:06.6781926Z", - "queryTimestamp": "2020-09-14T19:53:33.7128753Z", - "fileCount": 1, - "fileSize": 341796 - }, - { - "folderName": "xnet-1.15-2.1.10.jar", - "fingerprint": 195632675, - "fileDateHash": 2488255436, - "sectionID": 8, - "individualFingerprints": [ - 195632675 - ], - "status": 1, - "timestamp": "2020-09-06T18:29:35.890994Z", - "lastWriteTimeUtc": "2020-08-28T18:45:40.94602Z", - "queryTimestamp": "2020-09-14T19:53:33.7128753Z", - "fileCount": 1, - "fileSize": 538188 - }, { "folderName": "AI-Improvements-1.15.2-0.3.0.jar", "fingerprint": 2297404762, @@ -3034,7 +3004,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:14.8361995Z", "lastWriteTimeUtc": "2020-02-06T17:50:05.7200244Z", - "queryTimestamp": "2020-09-14T19:53:33.7138619Z", + "queryTimestamp": "2020-09-15T20:57:23.1668034Z", "fileCount": 1, "fileSize": 22121 }, @@ -3049,7 +3019,7 @@ "status": 1, "timestamp": "2020-06-25T20:49:57.2549764Z", "lastWriteTimeUtc": "2020-06-25T20:08:30.0445268Z", - "queryTimestamp": "2020-09-14T19:53:33.7138619Z", + "queryTimestamp": "2020-09-15T20:57:23.1668034Z", "fileCount": 1, "fileSize": 496919 }, @@ -3064,7 +3034,7 @@ "status": 1, "timestamp": "2020-07-28T19:15:34.2988591Z", "lastWriteTimeUtc": "2020-05-14T19:53:34.0614688Z", - "queryTimestamp": "2020-09-14T19:53:33.7138619Z", + "queryTimestamp": "2020-09-15T20:57:23.1668034Z", "fileCount": 1, "fileSize": 56504 }, @@ -3079,7 +3049,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.6201414Z", "lastWriteTimeUtc": "2020-08-05T20:53:41.8568038Z", - "queryTimestamp": "2020-09-14T19:53:33.7148593Z", + "queryTimestamp": "2020-09-15T20:57:23.1678003Z", "fileCount": 1, "fileSize": 1008899 }, @@ -3094,7 +3064,7 @@ "status": 1, "timestamp": "2020-05-15T18:26:23.8556095Z", "lastWriteTimeUtc": "2020-05-15T18:00:31.472417Z", - "queryTimestamp": "2020-09-14T19:53:33.7148593Z", + "queryTimestamp": "2020-09-15T20:57:23.1678003Z", "fileCount": 1, "fileSize": 5445 }, @@ -3144,7 +3114,7 @@ "status": 1, "timestamp": "2020-05-12T19:50:08.9822208Z", "lastWriteTimeUtc": "2020-05-06T19:19:02.0510529Z", - "queryTimestamp": "2020-09-14T19:53:33.7148593Z", + "queryTimestamp": "2020-09-15T20:57:23.1678003Z", "fileCount": 4, "fileSize": 0 }, @@ -3159,7 +3129,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.4092823Z", "lastWriteTimeUtc": "2020-09-01T20:21:49.262645Z", - "queryTimestamp": "2020-09-14T19:53:33.7158566Z", + "queryTimestamp": "2020-09-15T20:57:23.1687971Z", "fileCount": 1, "fileSize": 173370 }, @@ -3216,24 +3186,24 @@ "status": 1, "timestamp": "2020-07-12T20:10:27.1494016Z", "lastWriteTimeUtc": "2020-07-12T19:42:24.0560851Z", - "queryTimestamp": "2020-09-14T19:53:33.7158566Z", + "queryTimestamp": "2020-09-15T20:57:23.1697945Z", "fileCount": 3, "fileSize": 0 }, { - "folderName": "EmendatusEnigmatica-1.15.2-1.0.7.jar", - "fingerprint": 764508960, - "fileDateHash": 199454862, + "folderName": "rftoolspower-1.15-2.2.5.jar", + "fingerprint": 539070205, + "fileDateHash": 437090392, "sectionID": 8, "individualFingerprints": [ - 764508960 + 539070205 ], "status": 1, - "timestamp": "2020-09-14T19:53:32.2377928Z", - "lastWriteTimeUtc": "2020-09-14T19:06:41.2022227Z", - "queryTimestamp": "2020-09-14T19:53:33.7158566Z", + "timestamp": "2020-09-15T20:57:21.4985286Z", + "lastWriteTimeUtc": "2020-09-15T18:37:08.7457052Z", + "queryTimestamp": "2020-09-15T20:57:23.1687971Z", "fileCount": 1, - "fileSize": 1904170 + "fileSize": 566416 }, { "folderName": "immersiveposts-1.15.2-2.1.0.jar", @@ -3246,7 +3216,7 @@ "status": 1, "timestamp": "2020-07-05T20:34:50.1771663Z", "lastWriteTimeUtc": "2020-07-05T19:58:43.0130775Z", - "queryTimestamp": "2020-09-14T19:53:33.7168545Z", + "queryTimestamp": "2020-09-15T20:57:23.1697945Z", "fileCount": 1, "fileSize": 330118 }, @@ -3261,7 +3231,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:27.8934Z", "lastWriteTimeUtc": "2020-06-27T19:47:19.2211976Z", - "queryTimestamp": "2020-09-14T19:53:33.7168545Z", + "queryTimestamp": "2020-09-15T20:57:23.1697945Z", "fileCount": 1, "fileSize": 277009 }, @@ -3276,7 +3246,7 @@ "status": 1, "timestamp": "2020-04-04T19:01:39.9440616Z", "lastWriteTimeUtc": "2020-04-04T18:25:45.1508534Z", - "queryTimestamp": "2020-09-14T19:53:33.7178514Z", + "queryTimestamp": "2020-09-15T20:57:23.1707921Z", "fileCount": 1, "fileSize": 18052 }, @@ -3291,7 +3261,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:27.8545041Z", "lastWriteTimeUtc": "2020-06-26T21:04:10.7809987Z", - "queryTimestamp": "2020-09-14T19:53:33.7178514Z", + "queryTimestamp": "2020-09-15T20:57:23.1707921Z", "fileCount": 1, "fileSize": 28861 }, @@ -3350,7 +3320,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.8687021Z", "lastWriteTimeUtc": "2020-03-22T22:22:38.3686718Z", - "queryTimestamp": "2020-09-14T19:53:33.7178514Z", + "queryTimestamp": "2020-09-15T20:57:23.1707921Z", "fileCount": 5, "fileSize": 0 }, @@ -3365,7 +3335,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.6739973Z", "lastWriteTimeUtc": "2020-08-16T20:19:27.4801004Z", - "queryTimestamp": "2020-09-14T19:53:33.7188489Z", + "queryTimestamp": "2020-09-15T20:57:23.1717892Z", "fileCount": 1, "fileSize": 72022 }, @@ -3380,7 +3350,7 @@ "status": 1, "timestamp": "2020-05-14T19:49:33.4984415Z", "lastWriteTimeUtc": "2020-05-14T17:36:59.8689747Z", - "queryTimestamp": "2020-09-14T19:53:33.7188489Z", + "queryTimestamp": "2020-09-15T20:57:23.1717892Z", "fileCount": 1, "fileSize": 139878 }, @@ -3395,7 +3365,7 @@ "status": 1, "timestamp": "2020-05-12T19:50:08.9031704Z", "lastWriteTimeUtc": "2020-05-07T17:51:34.924327Z", - "queryTimestamp": "2020-09-14T19:53:33.7198461Z", + "queryTimestamp": "2020-09-15T20:57:23.1717892Z", "fileCount": 1, "fileSize": 35214 }, @@ -3410,66 +3380,68 @@ "status": 1, "timestamp": "2020-07-11T19:07:00.3783757Z", "lastWriteTimeUtc": "2020-07-11T18:13:52.1502767Z", - "queryTimestamp": "2020-09-14T19:53:33.7208441Z", + "queryTimestamp": "2020-09-15T20:57:23.1727868Z", "fileCount": 1, "fileSize": 299555 }, { "folderName": "New World (8)", - "fingerprint": 1947049544, - "fileDateHash": 3686688441, + "fingerprint": 429731073, + "fileDateHash": 1851870148, "sectionID": 10, "individualFingerprints": [ 29425876, 68802229, 74311726, - 114005004, + 120493877, + 147757694, + 197196429, 220349740, 241316361, - 241316361, 252420918, 339853837, 341673820, 362580002, - 403899236, 419688095, 444244632, + 476741478, 481121806, 504656787, 513901282, - 539912101, - 557583333, 648252000, 651942457, + 665692944, + 707279880, 707517314, 763558043, 769737479, 771550371, + 781815364, 797016327, 805596350, - 815273365, + 811947968, 827373859, - 835159662, + 836069309, + 872712792, 915690739, 951040492, + 973598422, + 1029787179, + 1030169627, 1037436254, 1086721577, 1128740188, 1156691497, 1182732594, - 1237542165, 1254586642, - 1274562446, 1289547773, 1318921553, 1320537910, 1326081694, - 1329276785, 1349007058, 1358826259, 1361848710, 1367033121, - 1401455610, 1402897034, 1440945404, 1470808285, @@ -3483,21 +3455,20 @@ 1540447798, 1540447798, 1540447798, + 1540447798, 1596950589, + 1621039314, 1681925683, - 1698950002, 1718569935, 1722796223, 1753484768, 1755612453, - 1765206879, 1777645178, 1783675463, 1831771499, 1837747192, - 1850702489, + 1908414541, 1944616000, - 2003699970, 2027585755, 2133734328, 2144146657, @@ -3505,39 +3476,45 @@ 2226088383, 2232013417, 2283750405, + 2283750405, 2290661205, 2331170389, 2348381908, 2363716728, 2372576555, + 2419397410, 2438022517, 2489218879, 2502419821, 2509696179, + 2556993288, 2573305100, 2653844868, 2702430682, 2753144493, 2822075958, 2868986478, - 2887489200, 3049160315, - 3101885755, + 3086223794, 3138918235, 3145946506, - 3183414419, 3194442245, + 3237643560, + 3246022863, 3250320899, 3287613341, 3451579659, - 3461448883, 3483693454, 3497303023, + 3500816939, 3533626746, 3533626746, 3533626746, - 3608929355, + 3558375540, 3643924002, + 3668680055, + 3697737044, + 3735737430, 3771282984, 3771282984, 3771282984, @@ -3550,21 +3527,22 @@ 3874577451, 3894804303, 3961037842, + 3983981764, 3994345198, 3994345198, - 4044260679, + 4005269965, 4095122453, 4095122453, 4161228871, + 4164711886, 4171457008, - 4180252397, 4192398683 ], "status": 1, - "timestamp": "2020-09-14T20:57:49.3079017Z", - "lastWriteTimeUtc": "2020-09-14T20:13:25.8832334Z", - "queryTimestamp": "2020-09-14T20:57:50.6356004Z", - "fileCount": 20, + "timestamp": "2020-09-15T20:57:21.6172113Z", + "lastWriteTimeUtc": "2020-09-15T20:57:20.8309948Z", + "queryTimestamp": "2020-09-15T20:57:23.1727868Z", + "fileCount": 21, "fileSize": 0 }, { @@ -3578,7 +3556,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.2169319Z", "lastWriteTimeUtc": "2020-03-28T07:59:14.2108515Z", - "queryTimestamp": "2020-09-14T19:53:33.7208441Z", + "queryTimestamp": "2020-09-15T20:57:23.1737842Z", "fileCount": 1, "fileSize": 8126 }, @@ -3593,10 +3571,25 @@ "status": 1, "timestamp": "2020-07-05T20:57:24.2339912Z", "lastWriteTimeUtc": "2020-07-05T20:35:10.357134Z", - "queryTimestamp": "2020-09-14T19:53:33.7218406Z", + "queryTimestamp": "2020-09-15T20:57:23.1737842Z", "fileCount": 1, "fileSize": 34303 }, + { + "folderName": "thermal_cultivation-1.15.2-0.2.4b.jar", + "fingerprint": 2396940463, + "fileDateHash": 855279747, + "sectionID": 8, + "individualFingerprints": [ + 2396940463 + ], + "status": 1, + "timestamp": "2020-09-15T20:57:21.5663475Z", + "lastWriteTimeUtc": "2020-09-15T18:37:16.8230923Z", + "queryTimestamp": "2020-09-15T20:57:23.1737842Z", + "fileCount": 1, + "fileSize": 180677 + }, { "folderName": "phosphor-forge-mc1.15.2-0.5.2+build.4.jar", "fingerprint": 1456388086, @@ -3608,7 +3601,7 @@ "status": 1, "timestamp": "2020-04-03T18:13:43.7746532Z", "lastWriteTimeUtc": "2020-04-03T17:40:07.9954123Z", - "queryTimestamp": "2020-09-14T19:53:33.7223561Z", + "queryTimestamp": "2020-09-15T20:57:23.1747826Z", "fileCount": 1, "fileSize": 45363 }, @@ -3623,7 +3616,7 @@ "status": 1, "timestamp": "2020-08-03T19:57:21.0069532Z", "lastWriteTimeUtc": "2020-08-03T18:59:02.3245631Z", - "queryTimestamp": "2020-09-14T19:53:33.722871Z", + "queryTimestamp": "2020-09-15T20:57:23.1757817Z", "fileCount": 1, "fileSize": 1298382 }, @@ -3638,7 +3631,7 @@ "status": 1, "timestamp": "2020-08-01T19:06:07.6477685Z", "lastWriteTimeUtc": "2020-07-31T20:18:05.6188274Z", - "queryTimestamp": "2020-09-14T19:53:33.722871Z", + "queryTimestamp": "2020-09-15T20:57:23.1757817Z", "fileCount": 1, "fileSize": 940864 }, @@ -3653,7 +3646,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.3488675Z", "lastWriteTimeUtc": "2020-08-18T18:14:18.7268452Z", - "queryTimestamp": "2020-09-14T19:53:33.722871Z", + "queryTimestamp": "2020-09-15T20:57:23.1767768Z", "fileCount": 1, "fileSize": 717043 }, @@ -3668,7 +3661,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.9185055Z", "lastWriteTimeUtc": "2020-07-22T18:19:00.39654Z", - "queryTimestamp": "2020-09-14T19:53:33.7238581Z", + "queryTimestamp": "2020-09-15T20:57:23.1767768Z", "fileCount": 1, "fileSize": 687658 }, @@ -3683,7 +3676,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:15.4440923Z", "lastWriteTimeUtc": "2020-01-31T20:43:58.206192Z", - "queryTimestamp": "2020-09-14T19:53:33.7238581Z", + "queryTimestamp": "2020-09-15T20:57:23.1767768Z", "fileCount": 1, "fileSize": 2854 }, @@ -3698,7 +3691,7 @@ "status": 1, "timestamp": "2020-05-30T20:18:09.6396573Z", "lastWriteTimeUtc": "2020-05-30T18:14:02.4434743Z", - "queryTimestamp": "2020-09-14T19:53:33.7238581Z", + "queryTimestamp": "2020-09-15T20:57:23.1777806Z", "fileCount": 1, "fileSize": 321126 }, @@ -3713,7 +3706,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:15.9517489Z", "lastWriteTimeUtc": "2020-02-13T19:33:12.8160278Z", - "queryTimestamp": "2020-09-14T19:53:33.7248556Z", + "queryTimestamp": "2020-09-15T20:57:23.1777806Z", "fileCount": 1, "fileSize": 26321 }, @@ -3728,7 +3721,7 @@ "status": 1, "timestamp": "2020-07-12T21:58:57.5597224Z", "lastWriteTimeUtc": "2020-07-12T21:56:19.5539198Z", - "queryTimestamp": "2020-09-14T19:53:33.7248556Z", + "queryTimestamp": "2020-09-15T20:57:23.1787706Z", "fileCount": 1, "fileSize": 88207 }, @@ -3743,7 +3736,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:54.5749365Z", "lastWriteTimeUtc": "2020-08-16T20:18:26.4381812Z", - "queryTimestamp": "2020-09-14T19:53:33.7248556Z", + "queryTimestamp": "2020-09-15T20:57:23.1787706Z", "fileCount": 1, "fileSize": 464780 }, @@ -3758,7 +3751,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:26.0882585Z", "lastWriteTimeUtc": "2020-09-11T18:24:47.5805765Z", - "queryTimestamp": "2020-09-14T19:53:33.7258527Z", + "queryTimestamp": "2020-09-15T20:57:23.1787706Z", "fileCount": 1, "fileSize": 556160 }, @@ -3773,7 +3766,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.1749386Z", "lastWriteTimeUtc": "2020-03-23T20:05:37.3461951Z", - "queryTimestamp": "2020-09-14T19:53:33.7258527Z", + "queryTimestamp": "2020-09-15T20:57:23.179768Z", "fileCount": 1, "fileSize": 186909 }, @@ -3788,7 +3781,7 @@ "status": 1, "timestamp": "2020-08-23T21:25:47.4901849Z", "lastWriteTimeUtc": "2020-08-22T20:50:47.8238297Z", - "queryTimestamp": "2020-09-14T19:53:33.7268507Z", + "queryTimestamp": "2020-09-15T20:57:23.179768Z", "fileCount": 1, "fileSize": 346100 }, @@ -3803,7 +3796,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.7354101Z", "lastWriteTimeUtc": "2020-09-06T18:00:05.2304201Z", - "queryTimestamp": "2020-09-14T19:53:33.7268507Z", + "queryTimestamp": "2020-09-15T20:57:23.179768Z", "fileCount": 1, "fileSize": 1680776 }, @@ -3818,7 +3811,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.8680564Z", "lastWriteTimeUtc": "2020-09-03T10:46:41.4988235Z", - "queryTimestamp": "2020-09-14T19:53:33.7268507Z", + "queryTimestamp": "2020-09-15T20:57:23.1807655Z", "fileCount": 1, "fileSize": 320582 }, @@ -3833,7 +3826,7 @@ "status": 1, "timestamp": "2020-07-29T20:03:06.6992774Z", "lastWriteTimeUtc": "2020-07-29T18:13:03.1127746Z", - "queryTimestamp": "2020-09-14T19:53:33.7278486Z", + "queryTimestamp": "2020-09-15T20:57:23.1807655Z", "fileCount": 1, "fileSize": 514576 }, @@ -3848,7 +3841,7 @@ "status": 1, "timestamp": "2020-09-06T18:29:35.8151969Z", "lastWriteTimeUtc": "2020-09-06T18:00:51.5293836Z", - "queryTimestamp": "2020-09-14T19:53:33.7278486Z", + "queryTimestamp": "2020-09-15T20:57:23.1817625Z", "fileCount": 1, "fileSize": 5136192 }, @@ -3863,7 +3856,7 @@ "status": 1, "timestamp": "2020-06-23T21:12:17.4936031Z", "lastWriteTimeUtc": "2020-06-23T20:59:11.2050289Z", - "queryTimestamp": "2020-09-14T19:53:33.7288459Z", + "queryTimestamp": "2020-09-15T20:57:23.1817625Z", "fileCount": 1, "fileSize": 10400 }, @@ -3878,7 +3871,7 @@ "status": 1, "timestamp": "2020-07-28T18:27:02.6260042Z", "lastWriteTimeUtc": "2020-07-28T15:07:31.481536Z", - "queryTimestamp": "2020-09-14T19:53:33.7288459Z", + "queryTimestamp": "2020-09-15T20:57:23.1817625Z", "fileCount": 1, "fileSize": 402673 }, @@ -3893,7 +3886,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:28.1008437Z", "lastWriteTimeUtc": "2020-06-26T21:05:20.0283621Z", - "queryTimestamp": "2020-09-14T19:53:33.7298457Z", + "queryTimestamp": "2020-09-15T20:57:23.1827599Z", "fileCount": 1, "fileSize": 163210 }, @@ -3908,7 +3901,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.1869295Z", "lastWriteTimeUtc": "2020-03-20T18:31:51.2099633Z", - "queryTimestamp": "2020-09-14T19:53:33.7298457Z", + "queryTimestamp": "2020-09-15T20:57:23.1827599Z", "fileCount": 1, "fileSize": 65098 }, @@ -3923,25 +3916,10 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.7278549Z", "lastWriteTimeUtc": "2020-08-17T18:51:19.7524257Z", - "queryTimestamp": "2020-09-14T19:53:33.7308448Z", + "queryTimestamp": "2020-09-15T20:57:23.1827599Z", "fileCount": 1, "fileSize": 7083211 }, - { - "folderName": "rftoolspower-1.15-2.2.4.jar", - "fingerprint": 2833144682, - "fileDateHash": 4237552511, - "sectionID": 8, - "individualFingerprints": [ - 2833144682 - ], - "status": 1, - "timestamp": "2020-09-06T18:29:35.7763008Z", - "lastWriteTimeUtc": "2020-08-28T18:44:08.7624063Z", - "queryTimestamp": "2020-09-14T19:53:33.7318369Z", - "fileCount": 1, - "fileSize": 559054 - }, { "folderName": "FastFurnace-1.15.1-3.0.0.jar", "fingerprint": 1662686374, @@ -3953,7 +3931,7 @@ "status": 1, "timestamp": "2020-03-08T18:37:54.9659469Z", "lastWriteTimeUtc": "2020-03-07T19:18:16.9715655Z", - "queryTimestamp": "2020-09-14T19:53:33.7323506Z", + "queryTimestamp": "2020-09-15T20:57:23.1837571Z", "fileCount": 1, "fileSize": 15647 }, @@ -3968,7 +3946,7 @@ "status": 1, "timestamp": "2020-07-28T18:29:02.3192787Z", "lastWriteTimeUtc": "2020-07-28T18:27:24.2577692Z", - "queryTimestamp": "2020-09-14T19:53:33.7328626Z", + "queryTimestamp": "2020-09-15T20:57:23.1837571Z", "fileCount": 1, "fileSize": 470503 }, @@ -4144,7 +4122,7 @@ "status": 1, "timestamp": "2020-09-13T20:07:00.8512651Z", "lastWriteTimeUtc": "2020-09-12T21:58:43.0440078Z", - "queryTimestamp": "2020-09-14T20:07:28.957619Z", + "queryTimestamp": "2020-09-15T20:57:23.1837571Z", "fileCount": 21, "fileSize": 0 }, @@ -4159,7 +4137,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:15.2101992Z", "lastWriteTimeUtc": "2020-02-02T19:17:18.792614Z", - "queryTimestamp": "2020-09-14T19:53:33.7328626Z", + "queryTimestamp": "2020-09-15T20:57:23.1847545Z", "fileCount": 1, "fileSize": 52594 }, @@ -4174,7 +4152,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.5706009Z", "lastWriteTimeUtc": "2020-01-31T20:41:39.2864353Z", - "queryTimestamp": "2020-09-14T19:53:33.7338525Z", + "queryTimestamp": "2020-09-15T20:57:23.1857515Z", "fileCount": 1, "fileSize": 33098 }, @@ -4189,7 +4167,7 @@ "status": 1, "timestamp": "2020-09-12T21:48:28.5863402Z", "lastWriteTimeUtc": "2020-09-12T18:09:54.9432152Z", - "queryTimestamp": "2020-09-14T19:53:33.7338525Z", + "queryTimestamp": "2020-09-15T20:57:23.1857515Z", "fileCount": 1, "fileSize": 715662 }, @@ -4204,7 +4182,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.8377229Z", "lastWriteTimeUtc": "2020-07-14T20:20:32.7801968Z", - "queryTimestamp": "2020-09-14T19:53:33.7338525Z", + "queryTimestamp": "2020-09-15T20:57:23.1857515Z", "fileCount": 1, "fileSize": 2782599 }, @@ -4219,7 +4197,7 @@ "status": 1, "timestamp": "2020-05-15T18:26:23.8556095Z", "lastWriteTimeUtc": "2020-05-15T18:00:29.5151672Z", - "queryTimestamp": "2020-09-14T19:53:33.7348497Z", + "queryTimestamp": "2020-09-15T20:57:23.1867489Z", "fileCount": 1, "fileSize": 20028 }, @@ -4234,7 +4212,7 @@ "status": 1, "timestamp": "2020-06-25T20:49:57.2529816Z", "lastWriteTimeUtc": "2020-06-25T20:08:23.9554725Z", - "queryTimestamp": "2020-09-14T19:53:33.7348497Z", + "queryTimestamp": "2020-09-15T20:57:23.1867489Z", "fileCount": 1, "fileSize": 92282 }, @@ -4249,7 +4227,7 @@ "status": 1, "timestamp": "2020-04-23T19:27:09.1313554Z", "lastWriteTimeUtc": "2020-04-23T18:00:49.1143093Z", - "queryTimestamp": "2020-09-14T19:53:33.7348497Z", + "queryTimestamp": "2020-09-15T20:57:23.1867489Z", "fileCount": 1, "fileSize": 45034 }, @@ -4264,7 +4242,7 @@ "status": 1, "timestamp": "2020-09-12T21:48:28.5923215Z", "lastWriteTimeUtc": "2020-09-12T18:09:59.8289801Z", - "queryTimestamp": "2020-09-14T19:53:33.7358468Z", + "queryTimestamp": "2020-09-15T20:57:23.1877463Z", "fileCount": 1, "fileSize": 348976 }, @@ -4279,7 +4257,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.7784331Z", "lastWriteTimeUtc": "2020-09-11T17:33:28.0353679Z", - "queryTimestamp": "2020-09-14T19:53:33.7358468Z", + "queryTimestamp": "2020-09-15T20:57:23.1877463Z", "fileCount": 1, "fileSize": 3119481 }, @@ -4294,7 +4272,7 @@ "status": 1, "timestamp": "2020-04-26T19:02:29.204162Z", "lastWriteTimeUtc": "2020-04-26T18:33:03.6260631Z", - "queryTimestamp": "2020-09-14T19:53:33.7368442Z", + "queryTimestamp": "2020-09-15T20:57:23.1887437Z", "fileCount": 1, "fileSize": 3864 }, @@ -4309,10 +4287,25 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.5258631Z", "lastWriteTimeUtc": "2020-03-16T19:35:36.6567469Z", - "queryTimestamp": "2020-09-14T19:53:33.7368442Z", + "queryTimestamp": "2020-09-15T20:57:23.1887437Z", "fileCount": 1, "fileSize": 394633 }, + { + "folderName": "cofh_core-1.15.2-0.6.4b.jar", + "fingerprint": 2716707584, + "fileDateHash": 3806372755, + "sectionID": 8, + "individualFingerprints": [ + 2716707584 + ], + "status": 1, + "timestamp": "2020-09-15T20:57:21.4087715Z", + "lastWriteTimeUtc": "2020-09-15T18:32:29.925166Z", + "queryTimestamp": "2020-09-15T20:57:23.1887437Z", + "fileCount": 1, + "fileSize": 941212 + }, { "folderName": "ClickMachine-1.15.2-3.0.2.jar", "fingerprint": 2484465928, @@ -4324,7 +4317,7 @@ "status": 1, "timestamp": "2020-03-28T09:44:04.1809459Z", "lastWriteTimeUtc": "2020-03-20T18:31:08.9893987Z", - "queryTimestamp": "2020-09-14T19:53:33.7368442Z", + "queryTimestamp": "2020-09-15T20:57:23.1897416Z", "fileCount": 1, "fileSize": 51783 }, @@ -4339,7 +4332,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:28.0848871Z", "lastWriteTimeUtc": "2020-06-27T19:47:28.607902Z", - "queryTimestamp": "2020-09-14T19:53:33.7378418Z", + "queryTimestamp": "2020-09-15T20:57:23.1897416Z", "fileCount": 1, "fileSize": 5267 }, @@ -4354,7 +4347,7 @@ "status": 1, "timestamp": "2020-07-28T19:15:34.2998564Z", "lastWriteTimeUtc": "2020-04-17T20:51:06.3262883Z", - "queryTimestamp": "2020-09-14T19:53:33.7378418Z", + "queryTimestamp": "2020-09-15T20:57:23.1897416Z", "fileCount": 1, "fileSize": 56385 }, @@ -4369,7 +4362,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.1025045Z", "lastWriteTimeUtc": "2020-01-31T19:34:33.2556184Z", - "queryTimestamp": "2020-09-14T19:53:33.7378418Z", + "queryTimestamp": "2020-09-15T20:57:23.1907396Z", "fileCount": 1, "fileSize": 22255 }, @@ -4384,7 +4377,7 @@ "status": 1, "timestamp": "2020-07-05T21:00:42.6331573Z", "lastWriteTimeUtc": "2020-07-05T21:00:38.1507044Z", - "queryTimestamp": "2020-09-14T19:53:33.738839Z", + "queryTimestamp": "2020-09-15T20:57:23.1907396Z", "fileCount": 1, "fileSize": 257410 }, @@ -4399,7 +4392,7 @@ "status": 1, "timestamp": "2020-06-28T18:16:27.8574957Z", "lastWriteTimeUtc": "2020-06-26T21:04:19.2127185Z", - "queryTimestamp": "2020-09-14T19:53:33.738839Z", + "queryTimestamp": "2020-09-15T20:57:23.1917364Z", "fileCount": 1, "fileSize": 3232629 }, @@ -4414,7 +4407,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.7564915Z", "lastWriteTimeUtc": "2020-09-11T17:33:13.4317173Z", - "queryTimestamp": "2020-09-14T19:53:33.738839Z", + "queryTimestamp": "2020-09-15T20:57:23.1917364Z", "fileCount": 1, "fileSize": 865261 }, @@ -4429,10 +4422,25 @@ "status": 1, "timestamp": "2020-08-19T20:18:54.6008675Z", "lastWriteTimeUtc": "2020-08-13T18:32:34.8956619Z", - "queryTimestamp": "2020-09-14T19:53:33.7398362Z", + "queryTimestamp": "2020-09-15T20:57:23.1917364Z", "fileCount": 1, "fileSize": 131751 }, + { + "folderName": "rftoolsutility-1.15-2.1.10.jar", + "fingerprint": 4132094797, + "fileDateHash": 3874262864, + "sectionID": 8, + "individualFingerprints": [ + 4132094797 + ], + "status": 1, + "timestamp": "2020-09-15T20:57:21.5174775Z", + "lastWriteTimeUtc": "2020-09-15T18:35:30.8500521Z", + "queryTimestamp": "2020-09-15T20:57:23.192734Z", + "fileCount": 1, + "fileSize": 1429822 + }, { "folderName": "pitg-1.15.2-1.4.1.jar", "fingerprint": 485798598, @@ -4444,7 +4452,7 @@ "status": 1, "timestamp": "2020-07-22T20:50:51.8586698Z", "lastWriteTimeUtc": "2020-07-18T10:25:52.3460426Z", - "queryTimestamp": "2020-09-14T19:53:33.7398362Z", + "queryTimestamp": "2020-09-15T20:57:23.192734Z", "fileCount": 1, "fileSize": 195562 }, @@ -4459,7 +4467,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:16.0923732Z", "lastWriteTimeUtc": "2020-01-31T20:44:12.566903Z", - "queryTimestamp": "2020-09-14T19:53:33.741831Z", + "queryTimestamp": "2020-09-15T20:57:23.1937311Z", "fileCount": 1, "fileSize": 7772 }, @@ -4474,7 +4482,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.0606157Z", "lastWriteTimeUtc": "2020-02-26T18:31:00.785265Z", - "queryTimestamp": "2020-09-14T19:53:33.741831Z", + "queryTimestamp": "2020-09-15T20:57:23.1937311Z", "fileCount": 1, "fileSize": 487627 }, @@ -4489,7 +4497,7 @@ "status": 1, "timestamp": "2020-09-11T19:00:25.7076224Z", "lastWriteTimeUtc": "2020-09-10T18:56:48.0652281Z", - "queryTimestamp": "2020-09-14T19:53:33.7423433Z", + "queryTimestamp": "2020-09-15T20:57:23.1947284Z", "fileCount": 1, "fileSize": 231739 }, @@ -4504,7 +4512,7 @@ "status": 1, "timestamp": "2020-06-16T19:13:01.5120691Z", "lastWriteTimeUtc": "2020-06-15T19:20:55.666707Z", - "queryTimestamp": "2020-09-14T19:53:33.7428556Z", + "queryTimestamp": "2020-09-15T20:57:23.1947284Z", "fileCount": 1, "fileSize": 1404300 }, @@ -4519,7 +4527,7 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.3598922Z", "lastWriteTimeUtc": "2020-01-31T20:42:05.5443908Z", - "queryTimestamp": "2020-09-14T19:53:33.7428556Z", + "queryTimestamp": "2020-09-15T20:57:23.1947284Z", "fileCount": 1, "fileSize": 46859 }, @@ -4534,7 +4542,7 @@ "status": 1, "timestamp": "2020-08-19T20:18:55.7966705Z", "lastWriteTimeUtc": "2020-08-17T21:08:41.6652182Z", - "queryTimestamp": "2020-09-14T19:53:33.7428556Z", + "queryTimestamp": "2020-09-15T20:57:23.1957262Z", "fileCount": 1, "fileSize": 451990 }, @@ -4549,13 +4557,13 @@ "status": 1, "timestamp": "2020-03-05T20:00:18.0366801Z", "lastWriteTimeUtc": "2020-01-31T20:40:27.827066Z", - "queryTimestamp": "2020-09-14T19:53:33.743846Z", + "queryTimestamp": "2020-09-15T20:57:23.1957262Z", "fileCount": 1, "fileSize": 377368 } ], "isValid": true, - "lastPreviousMatchUpdate": "2020-09-14T20:57:51.6869636Z", + "lastPreviousMatchUpdate": "2020-09-15T20:57:25.8381614Z", "isEnabled": true, "isPinned": false, "gameVersion": "1.15.2", @@ -5028,7 +5036,7 @@ "dateInstalled": "2020-02-23T10:55:56.3988675Z", "dateUpdated": "2020-09-15T18:37:08.7544615Z", "dateLastUpdateAttempted": "2020-09-15T18:37:08.7544615Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -5206,14 +5214,14 @@ "addonID": 271835, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3057456, - "displayName": "thermal_cultivation-1.15.2-0.2.4b.jar", - "fileName": "thermal_cultivation-1.15.2-0.2.4b.jar", - "fileDate": "2020-09-15T01:53:54.71Z", - "fileLength": 180677, + "id": 3060288, + "displayName": "thermal_cultivation-1.15.2-0.3.0b.jar", + "fileName": "thermal_cultivation-1.15.2-0.3.0b.jar", + "fileDate": "2020-09-19T05:04:13.2Z", + "fileLength": 180675, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3057/456/thermal_cultivation-1.15.2-0.2.4b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3060/288/thermal_cultivation-1.15.2-0.3.0b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -5228,7 +5236,7 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3910773125, + "fingerprint": 1976391589, "type": 0 }, { @@ -5257,9 +5265,8 @@ "type": 0 } ], - "packageFingerprint": 2396940463, + "packageFingerprint": 2107539417, "gameVersion": [ - "Forge", "1.15.2" ], "hasInstallScript": false, @@ -5271,11 +5278,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal_cultivation-1.15.2-0.2.4b.jar" + "FileNameOnDisk": "thermal_cultivation-1.15.2-0.3.0b.jar" }, "dateInstalled": "2020-09-08T11:11:26.354138Z", - "dateUpdated": "2020-09-15T18:37:16.832053Z", - "dateLastUpdateAttempted": "2020-09-15T18:37:16.832053Z", + "dateUpdated": "2020-09-19T18:54:38.7630399Z", + "dateLastUpdateAttempted": "2020-09-19T18:54:38.7630399Z", "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -6878,14 +6885,14 @@ "addonID": 222880, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3057541, - "displayName": "thermal-1.15.2-0.2.5b.jar", - "fileName": "thermal-1.15.2-0.2.5b.jar", - "fileDate": "2020-09-15T05:46:26.613Z", - "fileLength": 2625011, + "id": 3060286, + "displayName": "thermal-1.15.2-0.3.0b.jar", + "fileName": "thermal-1.15.2-0.3.0b.jar", + "fileDate": "2020-09-19T05:03:48.347Z", + "fileLength": 2625195, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3057/541/thermal-1.15.2-0.2.5b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3060/286/thermal-1.15.2-0.3.0b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -6900,22 +6907,22 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 973994595, + "fingerprint": 2307971081, "type": 0 }, { "foldername": "cofh", - "fingerprint": 3897241508, + "fingerprint": 833694903, "type": 0 }, { "foldername": "assets", - "fingerprint": 2712693048, + "fingerprint": 2304139730, "type": 0 }, { "foldername": "data", - "fingerprint": 4135612120, + "fingerprint": 498219021, "type": 0 }, { @@ -6929,7 +6936,7 @@ "type": 0 } ], - "packageFingerprint": 1477704780, + "packageFingerprint": 475641695, "gameVersion": [ "Forge", "1.15.2" @@ -6943,11 +6950,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal-1.15.2-0.2.5b.jar" + "FileNameOnDisk": "thermal-1.15.2-0.3.0b.jar" }, "dateInstalled": "2020-09-08T11:11:16.9576376Z", - "dateUpdated": "2020-09-15T18:40:13.0693647Z", - "dateLastUpdateAttempted": "2020-09-15T18:40:13.0693647Z", + "dateUpdated": "2020-09-19T18:54:42.07524Z", + "dateLastUpdateAttempted": "2020-09-19T18:54:42.07524Z", "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -7628,14 +7635,14 @@ "addonID": 69162, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3057492, - "displayName": "cofh_core-1.15.2-0.6.4b.jar", - "fileName": "cofh_core-1.15.2-0.6.4b.jar", - "fileDate": "2020-09-15T03:11:13.36Z", - "fileLength": 941212, + "id": 3060283, + "displayName": "cofh_core-1.15.2-0.7.0b.jar", + "fileName": "cofh_core-1.15.2-0.7.0b.jar", + "fileDate": "2020-09-19T05:03:06.037Z", + "fileLength": 948541, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3057/492/cofh_core-1.15.2-0.6.4b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3060/283/cofh_core-1.15.2-0.7.0b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -7650,12 +7657,12 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 4272130730, + "fingerprint": 3925119797, "type": 0 }, { "foldername": "cofh", - "fingerprint": 2392516237, + "fingerprint": 3335352903, "type": 0 }, { @@ -7679,8 +7686,9 @@ "type": 0 } ], - "packageFingerprint": 2716707584, + "packageFingerprint": 2287657455, "gameVersion": [ + "Forge", "1.15.2" ], "hasInstallScript": false, @@ -7692,11 +7700,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "cofh_core-1.15.2-0.6.4b.jar" + "FileNameOnDisk": "cofh_core-1.15.2-0.7.0b.jar" }, "dateInstalled": "2020-02-15T19:19:47.8614063Z", - "dateUpdated": "2020-09-15T18:32:29.9316715Z", - "dateLastUpdateAttempted": "2020-09-15T18:32:29.9316715Z", + "dateUpdated": "2020-09-19T18:53:08.6733759Z", + "dateLastUpdateAttempted": "2020-09-19T18:53:08.6733759Z", "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -7796,14 +7804,14 @@ "addonID": 69163, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3057570, - "displayName": "thermal_expansion-1.15.2-0.2.5b.jar", - "fileName": "thermal_expansion-1.15.2-0.2.5b.jar", - "fileDate": "2020-09-15T07:06:44.8Z", - "fileLength": 672907, + "id": 3060287, + "displayName": "thermal_expansion-1.15.2-0.3.0b.jar", + "fileName": "thermal_expansion-1.15.2-0.3.0b.jar", + "fileDate": "2020-09-19T05:04:00.717Z", + "fileLength": 675328, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3057/570/thermal_expansion-1.15.2-0.2.5b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3060/287/thermal_expansion-1.15.2-0.3.0b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -7818,12 +7826,12 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1510762917, + "fingerprint": 778915447, "type": 0 }, { "foldername": "cofh", - "fingerprint": 3082571566, + "fingerprint": 1376108779, "type": 0 }, { @@ -7833,7 +7841,7 @@ }, { "foldername": "data", - "fingerprint": 1831242099, + "fingerprint": 3017714691, "type": 0 }, { @@ -7847,7 +7855,7 @@ "type": 0 } ], - "packageFingerprint": 2837275031, + "packageFingerprint": 648455783, "gameVersion": [ "Forge", "1.15.2" @@ -7861,11 +7869,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal_expansion-1.15.2-0.2.5b.jar" + "FileNameOnDisk": "thermal_expansion-1.15.2-0.3.0b.jar" }, "dateInstalled": "2020-09-08T11:11:17.7185877Z", - "dateUpdated": "2020-09-15T18:37:18.4048171Z", - "dateLastUpdateAttempted": "2020-09-15T18:37:18.4048171Z", + "dateUpdated": "2020-09-19T18:54:40.0434851Z", + "dateLastUpdateAttempted": "2020-09-19T18:54:40.0434851Z", "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -8661,14 +8669,14 @@ "addonID": 266936, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3017894, - "displayName": "JAOPCA-1.15.2-3.2.0.14.jar", - "fileName": "JAOPCA-1.15.2-3.2.0.14.jar", - "fileDate": "2020-07-29T08:29:01.75Z", - "fileLength": 514576, + "id": 3060511, + "displayName": "JAOPCA-1.15.2-3.2.0.15.jar", + "fileName": "JAOPCA-1.15.2-3.2.0.15.jar", + "fileDate": "2020-09-19T14:29:50.597Z", + "fileLength": 547146, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3017/894/JAOPCA-1.15.2-3.2.0.14.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3060/511/JAOPCA-1.15.2-3.2.0.15.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -8676,12 +8684,12 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2017435562, + "fingerprint": 3379633993, "type": 0 }, { "foldername": "thelm", - "fingerprint": 4226597432, + "fingerprint": 424880790, "type": 0 }, { @@ -8695,7 +8703,7 @@ "type": 0 } ], - "packageFingerprint": 2788089983, + "packageFingerprint": 4099694255, "gameVersion": [ "1.15.2" ], @@ -8708,12 +8716,12 @@ "gameVersionDateReleased": "2020-01-22T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "JAOPCA-1.15.2-3.2.0.14.jar" + "FileNameOnDisk": "JAOPCA-1.15.2-3.2.0.15.jar" }, "dateInstalled": "2020-03-08T18:40:01.6796345Z", - "dateUpdated": "2020-07-29T18:13:03.1217497Z", - "dateLastUpdateAttempted": "2020-07-29T18:13:03.1217497Z", - "status": 5, + "dateUpdated": "2020-09-19T18:54:26.2964261Z", + "dateLastUpdateAttempted": "2020-09-19T18:54:26.2964261Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -8953,7 +8961,7 @@ "dateInstalled": "2020-03-28T09:44:06.1522287Z", "dateUpdated": "2020-09-15T18:35:28.9431815Z", "dateLastUpdateAttempted": "2020-09-15T18:35:28.9431815Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -11093,7 +11101,7 @@ "dateInstalled": "2020-03-28T09:44:06.1631602Z", "dateUpdated": "2020-09-15T18:35:26.6352914Z", "dateLastUpdateAttempted": "2020-09-15T18:35:26.6352914Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -11678,14 +11686,14 @@ "addonID": 349447, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3052748, - "displayName": "ensorcellation-1.15.2-0.6.0b.jar", - "fileName": "ensorcellation-1.15.2-0.6.0b.jar", - "fileDate": "2020-09-09T04:04:14.067Z", - "fileLength": 118826, + "id": 3060284, + "displayName": "ensorcellation-1.15.2-0.7.0b.jar", + "fileName": "ensorcellation-1.15.2-0.7.0b.jar", + "fileDate": "2020-09-19T05:03:20.81Z", + "fileLength": 121193, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3052/748/ensorcellation-1.15.2-0.6.0b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3060/284/ensorcellation-1.15.2-0.7.0b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -11700,17 +11708,17 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 19008268, + "fingerprint": 3602932174, "type": 0 }, { "foldername": "cofh", - "fingerprint": 1914241657, + "fingerprint": 2724341056, "type": 0 }, { "foldername": "assets", - "fingerprint": 2846209885, + "fingerprint": 2741442941, "type": 0 }, { @@ -11724,7 +11732,7 @@ "type": 0 } ], - "packageFingerprint": 2023544515, + "packageFingerprint": 434039098, "gameVersion": [ "Forge", "1.15.2" @@ -11738,12 +11746,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "ensorcellation-1.15.2-0.6.0b.jar" + "FileNameOnDisk": "ensorcellation-1.15.2-0.7.0b.jar" }, "dateInstalled": "2020-02-15T19:19:48.2784331Z", - "dateUpdated": "2020-09-09T18:42:48.4592439Z", - "dateLastUpdateAttempted": "2020-09-09T18:42:48.4592439Z", - "status": 5, + "dateUpdated": "2020-09-19T18:53:14.5723943Z", + "dateLastUpdateAttempted": "2020-09-19T18:53:14.5723943Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -11841,7 +11849,7 @@ "dateInstalled": "2020-03-28T09:44:06.1652067Z", "dateUpdated": "2020-09-15T18:37:09.9615167Z", "dateLastUpdateAttempted": "2020-09-15T18:37:09.9615167Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -12697,7 +12705,7 @@ "dateInstalled": "2020-03-28T09:44:06.1572039Z", "dateUpdated": "2020-09-15T18:48:15.7348147Z", "dateLastUpdateAttempted": "2020-09-15T18:48:15.7348147Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -13017,7 +13025,7 @@ "dateInstalled": "2020-03-12T19:18:50.7383359Z", "dateUpdated": "2020-09-14T19:06:39.1381068Z", "dateLastUpdateAttempted": "2020-09-14T19:06:39.1381068Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -13277,14 +13285,14 @@ "addonID": 377897, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3049555, - "displayName": "productivebees-1.15.2-0.3.2.jar", - "fileName": "productivebees-1.15.2-0.3.2.jar", - "fileDate": "2020-09-04T14:41:29.353Z", - "fileLength": 1680776, + "id": 3058262, + "displayName": "productivebees-1.15.2-0.3.3.jar", + "fileName": "productivebees-1.15.2-0.3.3.jar", + "fileDate": "2020-09-16T07:36:54.34Z", + "fileLength": 1741857, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3049/555/productivebees-1.15.2-0.3.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3058/262/productivebees-1.15.2-0.3.3.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -13299,22 +13307,22 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3625459009, + "fingerprint": 2628878242, "type": 0 }, { "foldername": "cy", - "fingerprint": 1069632878, + "fingerprint": 2752276317, "type": 0 }, { "foldername": "assets", - "fingerprint": 1503360147, + "fingerprint": 1106448864, "type": 0 }, { "foldername": "data", - "fingerprint": 4039688564, + "fingerprint": 372093686, "type": 0 }, { @@ -13323,7 +13331,7 @@ "type": 0 } ], - "packageFingerprint": 3077619821, + "packageFingerprint": 2282004310, "gameVersion": [ "Forge", "1.15.2" @@ -13337,11 +13345,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "productivebees-1.15.2-0.3.2.jar" + "FileNameOnDisk": "productivebees-1.15.2-0.3.3.jar" }, "dateInstalled": "2020-07-22T20:53:19.9788715Z", - "dateUpdated": "2020-09-06T18:00:05.2403941Z", - "dateLastUpdateAttempted": "2020-09-06T18:00:05.2403941Z", + "dateUpdated": "2020-09-16T18:16:07.0213686Z", + "dateLastUpdateAttempted": "2020-09-16T18:16:07.0213686Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -13846,14 +13854,14 @@ "addonID": 353399, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3052746, - "displayName": "archers_paradox-1.15.2-0.6.0b.jar", - "fileName": "archers_paradox-1.15.2-0.6.0b.jar", - "fileDate": "2020-09-09T04:03:59.393Z", - "fileLength": 179846, + "id": 3060285, + "displayName": "archers_paradox-1.15.2-0.7.0b.jar", + "fileName": "archers_paradox-1.15.2-0.7.0b.jar", + "fileDate": "2020-09-19T05:03:35.09Z", + "fileLength": 172926, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3052/746/archers_paradox-1.15.2-0.6.0b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3060/285/archers_paradox-1.15.2-0.7.0b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -13868,7 +13876,7 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2427694304, + "fingerprint": 1361614808, "type": 0 }, { @@ -13878,12 +13886,12 @@ }, { "foldername": "assets", - "fingerprint": 1498311438, + "fingerprint": 463496558, "type": 0 }, { "foldername": "data", - "fingerprint": 3468113812, + "fingerprint": 448199995, "type": 0 }, { @@ -13897,7 +13905,7 @@ "type": 0 } ], - "packageFingerprint": 4237019835, + "packageFingerprint": 1737759421, "gameVersion": [ "Forge", "1.15.2" @@ -13911,12 +13919,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "archers_paradox-1.15.2-0.6.0b.jar" + "FileNameOnDisk": "archers_paradox-1.15.2-0.7.0b.jar" }, "dateInstalled": "2020-02-15T19:19:55.9027416Z", - "dateUpdated": "2020-09-09T18:42:13.4531044Z", - "dateLastUpdateAttempted": "2020-09-09T18:42:13.4531044Z", - "status": 5, + "dateUpdated": "2020-09-19T18:52:52.6262819Z", + "dateLastUpdateAttempted": "2020-09-19T18:52:52.6262819Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -13994,7 +14002,7 @@ "dateInstalled": "2020-08-06T21:18:41.2574262Z", "dateUpdated": "2020-09-15T18:32:36.8131534Z", "dateLastUpdateAttempted": "2020-09-15T18:32:36.8131534Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -14259,7 +14267,7 @@ "dateInstalled": "2020-03-29T09:55:53.8446403Z", "dateUpdated": "2020-09-14T19:07:43.2230113Z", "dateLastUpdateAttempted": "2020-09-14T19:07:43.2230113Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -15021,26 +15029,26 @@ "addonID": 233105, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3057519, - "displayName": "McJtyLib - 1.15-4.1.8", - "fileName": "mcjtylib-1.15-4.1.8.jar", - "fileDate": "2020-09-15T05:01:21.563Z", - "fileLength": 544010, + "id": 3060308, + "displayName": "McJtyLib - 1.15-4.1.9", + "fileName": "mcjtylib-1.15-4.1.9.jar", + "fileDate": "2020-09-19T05:48:12.953Z", + "fileLength": 547086, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3057/519/mcjtylib-1.15-4.1.8.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3060/308/mcjtylib-1.15-4.1.9.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 245211, + "addonId": 270789, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 270789, + "addonId": 245211, "type": 2, "fileId": 0 } @@ -15049,12 +15057,12 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 752982441, + "fingerprint": 4179703864, "type": 0 }, { "foldername": "mcjty", - "fingerprint": 2853259377, + "fingerprint": 3064014020, "type": 0 }, { @@ -15068,7 +15076,7 @@ "type": 0 } ], - "packageFingerprint": 1864864636, + "packageFingerprint": 1035991312, "gameVersion": [ "Forge", "1.15.2" @@ -15082,11 +15090,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "mcjtylib-1.15-4.1.8.jar" + "FileNameOnDisk": "mcjtylib-1.15-4.1.9.jar" }, "dateInstalled": "2020-03-28T09:44:06.1612027Z", - "dateUpdated": "2020-09-15T18:34:54.0799424Z", - "dateLastUpdateAttempted": "2020-09-15T18:34:54.0799424Z", + "dateUpdated": "2020-09-19T18:54:32.0210429Z", + "dateLastUpdateAttempted": "2020-09-19T18:54:32.0210429Z", "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -15343,14 +15351,14 @@ "addonID": 317780, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3048345, - "displayName": "v1.10.3 for Forge 1.15.2", - "fileName": "XaerosWorldMap_1.10.3_Forge_1.15.2.jar", - "fileDate": "2020-09-02T18:12:21.697Z", - "fileLength": 320582, + "id": 3058281, + "displayName": "v1.10.4 for Forge 1.15.2", + "fileName": "XaerosWorldMap_1.10.4_Forge_1.15.2.jar", + "fileDate": "2020-09-16T07:54:20.407Z", + "fileLength": 322961, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3048/345/XaerosWorldMap_1.10.3_Forge_1.15.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3058/281/XaerosWorldMap_1.10.4_Forge_1.15.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -15358,12 +15366,12 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 948094061, + "fingerprint": 1220975296, "type": 0 }, { "foldername": "xaero", - "fingerprint": 1954405083, + "fingerprint": 3861014866, "type": 0 }, { @@ -15377,7 +15385,7 @@ "type": 0 } ], - "packageFingerprint": 2087873427, + "packageFingerprint": 423571612, "gameVersion": [ "Forge", "1.15.2" @@ -15391,11 +15399,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "XaerosWorldMap_1.10.3_Forge_1.15.2.jar" + "FileNameOnDisk": "XaerosWorldMap_1.10.4_Forge_1.15.2.jar" }, "dateInstalled": "2020-05-17T19:01:31.5287758Z", - "dateUpdated": "2020-09-03T10:46:41.51079Z", - "dateLastUpdateAttempted": "2020-09-03T10:46:41.51079Z", + "dateUpdated": "2020-09-17T18:08:36.1660768Z", + "dateLastUpdateAttempted": "2020-09-17T18:08:36.1660768Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -16706,26 +16714,26 @@ "addonID": 406959, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3057451, - "displayName": "thermal_locomotion-1.15.2-0.2.4b.jar", - "fileName": "thermal_locomotion-1.15.2-0.2.4b.jar", - "fileDate": "2020-09-15T01:52:44.69Z", - "fileLength": 88631, + "id": 3060290, + "displayName": "thermal_locomotion-1.15.2-0.3.0b.jar", + "fileName": "thermal_locomotion-1.15.2-0.3.0b.jar", + "fileDate": "2020-09-19T05:04:51.607Z", + "fileLength": 88627, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3057/451/thermal_locomotion-1.15.2-0.2.4b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3060/290/thermal_locomotion-1.15.2-0.3.0b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 222880, + "addonId": 69162, "type": 3, "fileId": 0 }, { "id": 0, - "addonId": 69162, + "addonId": 222880, "type": 3, "fileId": 0 } @@ -16734,7 +16742,7 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 2306985480, + "fingerprint": 2710176415, "type": 0 }, { @@ -16763,8 +16771,9 @@ "type": 0 } ], - "packageFingerprint": 506364233, + "packageFingerprint": 1476217345, "gameVersion": [ + "Forge", "1.15.2" ], "hasInstallScript": false, @@ -16776,11 +16785,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal_locomotion-1.15.2-0.2.4b.jar" + "FileNameOnDisk": "thermal_locomotion-1.15.2-0.3.0b.jar" }, "dateInstalled": "2020-09-08T11:14:38.9929122Z", - "dateUpdated": "2020-09-15T18:48:10.4447279Z", - "dateLastUpdateAttempted": "2020-09-15T18:48:10.4447279Z", + "dateUpdated": "2020-09-19T18:54:50.8961119Z", + "dateLastUpdateAttempted": "2020-09-19T18:54:50.8961119Z", "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -17169,7 +17178,7 @@ "dateInstalled": "2020-03-28T09:44:06.155219Z", "dateUpdated": "2020-09-15T18:32:47.8333625Z", "dateLastUpdateAttempted": "2020-09-15T18:32:47.8333625Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -17396,27 +17405,27 @@ "addonID": 313970, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3055555, - "displayName": "Apotheosis-1.15.2-3.3.5.jar", - "fileName": "Apotheosis-1.15.2-3.3.5.jar", - "fileDate": "2020-09-12T17:10:37.963Z", - "fileLength": 715662, + "id": 3059784, + "displayName": "Apotheosis-1.15.2-3.3.7.jar", + "fileName": "Apotheosis-1.15.2-3.3.7.jar", + "fileDate": "2020-09-18T16:07:34.73Z", + "fileLength": 717180, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3055/555/Apotheosis-1.15.2-3.3.5.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3059/784/Apotheosis-1.15.2-3.3.7.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ { "id": 0, - "addonId": 238222, + "addonId": 250419, "type": 2, "fileId": 0 }, { "id": 0, - "addonId": 250419, - "type": 2, + "addonId": 283644, + "type": 3, "fileId": 0 }, { @@ -17427,8 +17436,8 @@ }, { "id": 0, - "addonId": 283644, - "type": 3, + "addonId": 238222, + "type": 2, "fileId": 0 } ], @@ -17436,7 +17445,7 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 802501821, + "fingerprint": 3547890712, "type": 0 }, { @@ -17451,12 +17460,12 @@ }, { "foldername": "shadows", - "fingerprint": 2075281830, + "fingerprint": 4216079849, "type": 0 }, { "foldername": "apothasm", - "fingerprint": 3728642422, + "fingerprint": 1157323658, "type": 0 }, { @@ -17475,7 +17484,7 @@ "type": 0 } ], - "packageFingerprint": 2866097994, + "packageFingerprint": 2651783616, "gameVersion": [ "1.15.2" ], @@ -17488,12 +17497,12 @@ "gameVersionDateReleased": "2020-01-22T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Apotheosis-1.15.2-3.3.5.jar" + "FileNameOnDisk": "Apotheosis-1.15.2-3.3.7.jar" }, "dateInstalled": "2020-03-28T09:44:06.1482311Z", - "dateUpdated": "2020-09-12T18:09:54.9571787Z", - "dateLastUpdateAttempted": "2020-09-12T18:09:54.9571787Z", - "status": 5, + "dateUpdated": "2020-09-19T18:52:51.1359986Z", + "dateLastUpdateAttempted": "2020-09-19T18:52:51.1359986Z", + "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -18551,16 +18560,16 @@ "addonID": 245506, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3057115, - "displayName": "minecolonies-0.13.257-ALPHA-universal.jar", - "fileName": "minecolonies-0.13.257-ALPHA-universal.jar", - "fileDate": "2020-09-14T16:39:36.08Z", - "fileLength": 32707174, + "id": 3058690, + "displayName": "minecolonies-0.13.260-ALPHA-universal.jar", + "fileName": "minecolonies-0.13.260-ALPHA-universal.jar", + "fileDate": "2020-09-16T22:43:44.323Z", + "fileLength": 32707166, "releaseType": 3, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3057/115/minecolonies-0.13.257-ALPHA-universal.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3058/690/minecolonies-0.13.260-ALPHA-universal.jar", "isAlternate": false, - "alternateFileId": 3057116, + "alternateFileId": 3058691, "dependencies": [ { "id": 0, @@ -18573,17 +18582,17 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1771402436, + "fingerprint": 2211274799, "type": 0 }, { "foldername": "com", - "fingerprint": 2494840528, + "fingerprint": 1163694721, "type": 0 }, { "foldername": "assets", - "fingerprint": 404263616, + "fingerprint": 4147591853, "type": 0 }, { @@ -18597,7 +18606,7 @@ "type": 0 } ], - "packageFingerprint": 1121726036, + "packageFingerprint": 3449904658, "gameVersion": [ "1.15.2" ], @@ -18610,12 +18619,12 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "minecolonies-0.13.257-ALPHA-universal.jar" + "FileNameOnDisk": "minecolonies-0.13.260-ALPHA-universal.jar" }, "dateInstalled": "2020-07-28T15:30:44.1670577Z", - "dateUpdated": "2020-09-14T19:07:18.2938071Z", - "dateLastUpdateAttempted": "2020-09-14T19:07:18.2938071Z", - "status": 4, + "dateUpdated": "2020-09-17T18:08:23.3096285Z", + "dateLastUpdateAttempted": "2020-09-17T18:08:23.3096285Z", + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -18630,14 +18639,14 @@ "addonID": 291737, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3057452, - "displayName": "thermal_innovation-1.15.2-0.2.4b.jar", - "fileName": "thermal_innovation-1.15.2-0.2.4b.jar", - "fileDate": "2020-09-15T01:53:01.717Z", - "fileLength": 93682, + "id": 3060289, + "displayName": "thermal_innovation-1.15.2-0.3.0b.jar", + "fileName": "thermal_innovation-1.15.2-0.3.0b.jar", + "fileDate": "2020-09-19T05:04:32.91Z", + "fileLength": 93735, "releaseType": 2, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3057/452/thermal_innovation-1.15.2-0.2.4b.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3060/289/thermal_innovation-1.15.2-0.3.0b.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [ @@ -18652,12 +18661,12 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1867924777, + "fingerprint": 3340472081, "type": 0 }, { "foldername": "cofh", - "fingerprint": 818670055, + "fingerprint": 3818417704, "type": 0 }, { @@ -18681,7 +18690,7 @@ "type": 0 } ], - "packageFingerprint": 1571852758, + "packageFingerprint": 294924832, "gameVersion": [ "Forge", "1.15.2" @@ -18695,11 +18704,11 @@ "gameVersionDateReleased": "2008-03-01T06:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "thermal_innovation-1.15.2-0.2.4b.jar" + "FileNameOnDisk": "thermal_innovation-1.15.2-0.3.0b.jar" }, "dateInstalled": "2020-09-08T11:11:21.4280209Z", - "dateUpdated": "2020-09-15T18:40:14.7201935Z", - "dateLastUpdateAttempted": "2020-09-15T18:40:14.7201935Z", + "dateUpdated": "2020-09-19T18:54:43.7675429Z", + "dateLastUpdateAttempted": "2020-09-19T18:54:43.7675429Z", "status": 4, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -18793,14 +18802,14 @@ "addonID": 60028, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 2994079, - "displayName": "Aquaculture-1.15.2-2.0.16.jar", - "fileName": "Aquaculture-1.15.2-2.0.16.jar", - "fileDate": "2020-07-01T19:19:56.41Z", - "fileLength": 508500, + "id": 3059068, + "displayName": "Aquaculture-1.15.2-2.0.20.jar", + "fileName": "Aquaculture-1.15.2-2.0.20.jar", + "fileDate": "2020-09-17T15:12:16.37Z", + "fileLength": 521027, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/2994/79/Aquaculture-1.15.2-2.0.16.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3059/68/Aquaculture-1.15.2-2.0.20.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -18808,22 +18817,22 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 3968327773, + "fingerprint": 4090097591, "type": 0 }, { "foldername": "com", - "fingerprint": 1813271500, + "fingerprint": 1341740547, "type": 0 }, { "foldername": "assets", - "fingerprint": 3967538162, + "fingerprint": 1981886542, "type": 0 }, { "foldername": "data", - "fingerprint": 1591155319, + "fingerprint": 2263383877, "type": 0 }, { @@ -18832,7 +18841,7 @@ "type": 0 } ], - "packageFingerprint": 1411841950, + "packageFingerprint": 4260308286, "gameVersion": [ "Forge", "1.15.2" @@ -18846,11 +18855,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Aquaculture-1.15.2-2.0.16.jar" + "FileNameOnDisk": "Aquaculture-1.15.2-2.0.20.jar" }, "dateInstalled": "2020-03-28T09:44:06.1602047Z", - "dateUpdated": "2020-07-03T17:44:15.4215873Z", - "dateLastUpdateAttempted": "2020-07-03T17:44:15.4215873Z", + "dateUpdated": "2020-09-17T18:08:05.9160351Z", + "dateLastUpdateAttempted": "2020-09-17T18:08:05.9160351Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, @@ -20010,7 +20019,7 @@ "dateInstalled": "2020-03-28T09:44:06.1741674Z", "dateUpdated": "2020-09-15T18:35:30.8500521Z", "dateLastUpdateAttempted": "2020-09-15T18:35:30.8500521Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -20586,7 +20595,7 @@ "dateInstalled": "2020-05-13T18:17:56.3761796Z", "dateUpdated": "2020-09-15T18:35:01.5899892Z", "dateLastUpdateAttempted": "2020-09-15T18:35:01.5899892Z", - "status": 4, + "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, "preferenceIsIgnored": false, @@ -21749,14 +21758,14 @@ "addonID": 263420, "gameInstanceID": "9bea8014-8271-438f-a7d3-e4243f882f2a", "installedFile": { - "id": 3053619, - "displayName": "v20.21.0 for Forge 1.15.2", - "fileName": "Xaeros_Minimap_20.21.0_Forge_1.15.2.jar", - "fileDate": "2020-09-10T12:37:01.03Z", - "fileLength": 556160, + "id": 3058276, + "displayName": "v20.22.0 for Forge 1.15.2", + "fileName": "Xaeros_Minimap_20.22.0_Forge_1.15.2.jar", + "fileDate": "2020-09-16T07:49:52.627Z", + "fileLength": 560959, "releaseType": 1, "fileStatus": 4, - "downloadUrl": "https://edge.forgecdn.net/files/3053/619/Xaeros_Minimap_20.21.0_Forge_1.15.2.jar", + "downloadUrl": "https://edge.forgecdn.net/files/3058/276/Xaeros_Minimap_20.22.0_Forge_1.15.2.jar", "isAlternate": false, "alternateFileId": 0, "dependencies": [], @@ -21764,17 +21773,17 @@ "modules": [ { "foldername": "META-INF", - "fingerprint": 1221359724, + "fingerprint": 3433624956, "type": 0 }, { "foldername": "xaero", - "fingerprint": 503083669, + "fingerprint": 2726757025, "type": 0 }, { "foldername": "assets", - "fingerprint": 3439393464, + "fingerprint": 2056876840, "type": 0 }, { @@ -21783,7 +21792,7 @@ "type": 0 } ], - "packageFingerprint": 2734001096, + "packageFingerprint": 3373047524, "gameVersion": [ "Forge", "1.15.2" @@ -21797,11 +21806,11 @@ "gameVersionDateReleased": "2019-08-01T00:00:00Z", "gameId": 0, "isServerPack": false, - "FileNameOnDisk": "Xaeros_Minimap_20.21.0_Forge_1.15.2.jar" + "FileNameOnDisk": "Xaeros_Minimap_20.22.0_Forge_1.15.2.jar" }, "dateInstalled": "2020-07-03T17:46:51.9813037Z", - "dateUpdated": "2020-09-11T18:24:47.5961716Z", - "dateLastUpdateAttempted": "2020-09-11T18:24:47.5961716Z", + "dateUpdated": "2020-09-17T18:08:32.3355499Z", + "dateLastUpdateAttempted": "2020-09-17T18:08:32.3355499Z", "status": 5, "preferenceAutoInstallUpdates": false, "preferenceAlternateFile": false, From aa9590609a9af2366c8607ba851b49ea54fbb30e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Pilgaard=20Gr=C3=B8ndahl?= Date: Sat, 19 Sep 2020 23:14:54 +0200 Subject: [PATCH 39/39] changelogs and modlist --- MODLIST.md | 59 ++-- changelogs/CHANGELOG.md | 22 +- changelogs/CHANGELOG_MODS_0.6.1.txt | 408 ++++++++++++++++++++++++++++ 3 files changed, 457 insertions(+), 32 deletions(-) create mode 100644 changelogs/CHANGELOG_MODS_0.6.1.txt diff --git a/MODLIST.md b/MODLIST.md index 0967ca0..16042e0 100644 --- a/MODLIST.md +++ b/MODLIST.md @@ -1,14 +1,14 @@ -## Enigmatica 5 - 0.6.0 Modlist +## Enigmatica 5 - 0.6.1 Modlist - Abnormals-Core-1.15.2-1.0.6 - Actually Useful Stonecutter-0.0.1 mc 1.15.2 - AI-Improvements-1.15.2-0.3.0 - AkashicTome-1.3-13 - AmbientSounds_v3.0.20_mc1.15.2 - angelring-1.15.2-1.2.0 -- Apotheosis-1.15.2-3.3.5 +- Apotheosis-1.15.2-3.3.7 - AppleSkin-mc1.15.2-forge-1.0.14 -- Aquaculture-1.15.2-2.0.16 -- archers_paradox-1.15.2-0.6.0b +- Aquaculture-1.15.2-2.0.20 +- archers_paradox-1.15.2-0.7.0b - astralsorcery-1.15.2-1.12.9 - AttributeFix-1.15.2-7.0.2 - AutoRegLib-1.5-40 @@ -35,7 +35,7 @@ - ClickMachine-1.15.2-3.0.2 - Clumps-5.0.2.6 - CodeChickenLib-1.15.2-3.3.1.379-universal -- cofh_core-1.15.2-0.6.2b +- cofh_core-1.15.2-0.7.0b - coloredlanterns-1.0 - colytra-FORGE-1.15.2-3.0 - CommonCapabilities-1.15.2-2.5.4 @@ -64,17 +64,17 @@ - dimdungeons-1.07-forge-1.15.2 - Ding-1.15.2-1.1.0 - DrawersTooltip-1.15.2-1.1.0 -- DungeonCrawl-1.15.2-2.0.2 +- DungeonCrawl-1.15.2-2.1.0 - dwmh-1.15.2-4.0.0 - dyeable_flower_pots-1.15.2-1.1.0 - elevatorid-1.15.2-1.7.1 -- EmendatusEnigmatica-1.15.2-1.0.6 +- EmendatusEnigmatica-1.15.2-1.0.8 - EnchantmentDescriptions-1.15.2-2.0.9 - EnderMail-1.15.2-1.1.3 - EnderStorage-1.15.2-2.5.0.151-universal - engineersdecor-1.15.2-1.1.3 - enigmatica-0.3.2 -- ensorcellation-1.15.2-0.6.0b +- ensorcellation-1.15.2-0.7.0b - environmentalcreepers-forge-1.15.2-1.6.1 - extradisks-1.15.2-1.2.2 - extratags-1.1 @@ -107,7 +107,7 @@ - inventorysorter-1.15.2-17.0.0 - invtweaks-1.15.2-2.0.9 - ironchest-1.15.2-10.0.3 -- JAOPCA-1.15.2-3.2.0.14 +- JAOPCA-1.15.2-3.2.0.15 - jei-1.15.2-6.0.3.15 - justenoughbeacons-2.0 - JustEnoughResources-1.15.2-0.10.1.77 @@ -121,7 +121,7 @@ - Lollipop-1.15.2-1.0.16 - Ma-Essentials-1.15.2-3.1.1 - Mantle-1.15.2-1.5.15 -- mcjtylib-1.15-4.1.7 +- mcjtylib-1.15-4.1.9 - mcw-bridges-1.0.4fix-mc1.15.2 - mcw-doors-1.0.0-mc1.15.2 - mcw-trapdors-1.0.0fix-mc1.15.2 @@ -131,7 +131,7 @@ - MekanismGenerators-1.15.2-9.10.9.422 - MekanismTools-1.15.2-9.10.9.422 - mgui-1.15.2-2.1.1 -- minecolonies-0.13.247-ALPHA-universal +- minecolonies-0.13.260-ALPHA-universal - mining-helmet-1.15.2-1.0.8 - mininggadgets-1.3.5 - MixinBootstrap-1.0.3 @@ -163,9 +163,9 @@ - Powah-1.15.2-1.1.15 - PrettyBeaches_1.15.2-4.0.1 - PrettyPipes-1.5.5 -- productivebees-1.15.2-0.3.2 +- productivebees-1.15.2-0.3.3 - projectvibrantjourneys-1.15.2-2.0.3 -- Psi r1.2-83 +- Psi r1.2-84 - Quark-r2.1-245 - QuarkOddities-1.15.2 - QuickLeafDecay-MC1.15.2-1.2.5 @@ -176,12 +176,12 @@ - refinedpipes-0.4.2 - refinedstorage-1.8.8 - refinedstorageaddons-0.6.3 -- rftoolsbase-1.15-1.1.6 -- rftoolsbuilder-1.15-2.1.8 -- rftoolspower-1.15-2.2.4 -- rftoolsstorage-1.15-1.1.9 -- rftoolsutility-1.15-2.1.9 -- rsgauges-1.15.2-1.2.5-b1 +- rftoolsbase-1.15-1.1.7 +- rftoolsbuilder-1.15-2.1.9 +- rftoolspower-1.15-2.2.5 +- rftoolsstorage-1.15-1.1.10 +- rftoolsutility-1.15-2.1.10 +- rsgauges-1.15.2-1.2.5-b2 - SaveMyStronghold-1.15.2-1.0.1 - scaffoldingpower-1.15.2-1.2.1 - serverconfigupdater-1.1 @@ -192,7 +192,6 @@ - simply_trophies-2.0-1.15.2 - SlimeTweaks-1.15.2-1.0.2 - SnowRealMagic-1.15.2-1.8.0 -- snowundertrees-1.15.2-v1.1.1 - solcarrot-1.15.2-1.9.7 - stonecatalysts-1.15.2-1.2.0 - StorageDrawers-1.15.2-7.0.2 @@ -204,11 +203,11 @@ - tetra-1.15.2-2.18.1 - The-Endergetic-Expansion-1.15.2-v1.3.2 - theoneprobe-1.15-2.0.7 -- thermal-1.15.2-0.2.3b -- thermal_cultivation-1.15.2-0.2.2b -- thermal_expansion-1.15.2-0.2.3b -- thermal_innovation-1.15.2-0.2.2b -- thermal_locomotion-1.15.2-0.2.2b +- thermal-1.15.2-0.3.0b +- thermal_cultivation-1.15.2-0.3.0b +- thermal_expansion-1.15.2-0.3.0b +- thermal_innovation-1.15.2-0.3.0b +- thermal_locomotion-1.15.2-0.3.0b - titanium-1.15.2-2.4.2 - TMechworks-1.15.2-2.2.0 - ToastControl-1.15.2-3.0.1 @@ -217,7 +216,7 @@ - torchmaster-2.2.2 - towers_of_the_wild-1.15.2-1.2.0 - tramplestopper-1.15.2-2.0.0.1-universal -- Transport-1.15.2-2.4.0 +- Transport-1.15.2-2.4.1 - trashcans-1.0.3-mc1.15 - TrashSlot_1.15.2-11.0.0 - useful_backpacks-1.15.2-1.10.3.77 @@ -226,9 +225,9 @@ - vanillahammers-1.15.2-2.1 - Waystones_1.15.2-6.0.2 - whoops-1.15.2-0.0.1.3 -- WitherSkeletonTweaks-1.15.1-4.0.0 +- WitherSkeletonTweaks-1.15.2-4.0.2 - World-Stripper-1.7.2-1.15.1 -- XaerosWorldMap_1.10.3_Forge_1.15.2 -- Xaeros_Minimap_20.21.0_Forge_1.15.2 -- xnet-1.15-2.1.10 +- XaerosWorldMap_1.10.4_Forge_1.15.2 +- Xaeros_Minimap_20.22.0_Forge_1.15.2 +- xnet-1.15-2.1.11 - XNetGases-1.15.2-1.0.0 diff --git a/changelogs/CHANGELOG.md b/changelogs/CHANGELOG.md index 0c49e24..53f9fc3 100644 --- a/changelogs/CHANGELOG.md +++ b/changelogs/CHANGELOG.md @@ -2,13 +2,31 @@ _Using Forge-1.15.2-31.2.36_ | _[Mod Updates](https://github.com/NillerMedDild/Enigmatica5/blob/master/changelogs/CHANGELOG_MODS_0.6.1.txt)_ + + +**TONS of changes have been made, a new world is required if you're updating from any version before 0.6.0** + + + **Changes** -- +- Thermal: Finish unification Thermal Gems [\#491](https://github.com/NillerMedDild/Enigmatica5/issues/491) +- Thermal: Pulverizer recipes for Zinc and Aluminum [\#488](https://github.com/NillerMedDild/Enigmatica5/issues/488) +- Unification for knifes [\#492](https://github.com/NillerMedDild/Enigmatica5/issues/492) **Bug Fixes** -- Fixes Granite being in worldgen, it was not meant to be. +- Astral Sorcery: Structures [\#484](https://github.com/NillerMedDild/Enigmatica5/issues/484) +- BuildingGadgets; animations not working [\#279](https://github.com/NillerMedDild/Enigmatica5/issues/279) +- Create: Create lapis sheets have no recipe or alternative [\#500](https://github.com/NillerMedDild/Enigmatica5/issues/500) +- ImmersiveEngineering: IE Engineer Villager accepts only IE Steel \(Steel conversion recipe added\) [\#496](https://github.com/NillerMedDild/Enigmatica5/issues/496) +- Minecolonies: Barbarians texture bug [\#350](https://github.com/NillerMedDild/Enigmatica5/issues/350) +- Misc: Broken Farmland Recipe [\#493](https://github.com/NillerMedDild/Enigmatica5/issues/493) +- Powah: Uranitite [\#490](https://github.com/NillerMedDild/Enigmatica5/issues/490) +- Worldgen: Cobblestone-only recipes are causing issues if only Stone is available underground \(Allow Stone in the place of cobblestone in some recipes\) [\#487](https://github.com/NillerMedDild/Enigmatica5/issues/487) +- Worldgen: Fixes Granite being in worldgen, it was not meant to be. +- Worldgen: Increased minimum Y level of Emerald Ore to Y=192 +- Worldgen: Increased the amount of Lead and Uranium Ore [\#497](https://github.com/NillerMedDild/Enigmatica5/issues/497) **Mod Removals** diff --git a/changelogs/CHANGELOG_MODS_0.6.1.txt b/changelogs/CHANGELOG_MODS_0.6.1.txt new file mode 100644 index 0000000..10ce6e6 --- /dev/null +++ b/changelogs/CHANGELOG_MODS_0.6.1.txt @@ -0,0 +1,408 @@ +======================================= +Enigmatica5 0.6.0 --> Enigmatica5 0.6.1 +======================================= + +Updated: + Apotheosis (Apotheosis-1.15.2-3.3.5.jar --> Apotheosis-1.15.2-3.3.7.jar): + Apotheosis-1.15.2-3.3.7.jar: + Fixed Tomes of Scrapping not being turned into enchanted books upon use. + Fixed Crescendo of Bolts generating duplicated arrows. + + Aquaculture 2 (Aquaculture-1.15.2-2.0.16.jar --> Aquaculture-1.15.2-2.0.20.jar): + Aquaculture-1.15.2-2.0.20.jar: + Backported the following changes from 1.16.1: + * Made the majority of raw fish edible + * Added Spanish translations (Thanks to @feliclaria) + * Added recipe groups to some recipes (Thanks to @BetaCarotina) + * Fixed Neptunium Fillet Knife taking damage in some instances + * Re-added Fish Bones as junk loot + + Archer's Paradox (archers_paradox-1.15.2-0.6.0b.jar --> archers_paradox-1.15.2-0.7.0b.jar): + archers_paradox-1.15.2-0.7.0b.jar: + No changelog available. + + CoFH Core (cofh_core-1.15.2-0.6.2b.jar --> cofh_core-1.15.2-0.7.0b.jar): + cofh_core-1.15.2-0.7.0b.jar: + No changelog available. + + cofh_core-1.15.2-0.6.4b.jar: + No changelog available. + + Dungeon Crawl (DungeonCrawl-1.15.2-2.0.2 --> DungeonCrawl-1.15.2-2.1.0): + DungeonCrawl-1.15.2-2.1.0: + Dungeon Crawl 2.1.0 + AS OF VERSION 2.1.0, DUNGEON CRAWL IS PUBLISHED UNDER THE TERMS OF THE [GNU GENERAL PUBLIC LICENSE v. 3]() + Monster Changes: + * The monster spawner system is now datapack driven, allowing for customization + * Monsters will now have potion effects by default in the lower layers + * Added wither skeletons to the layers 3, 4 and 5 (they can't drop skulls) + Other: + * BREAKING CHANGE: Renamed the "stage" parameter for the loot functions to "loot_level" + * Added a "solid" option to the config that disables the dungeon ripping itself apart to match the worldgen ([#38](https://github.com/XYROC/DungeonCrawl/issues/38)) + * Added an option to register dummy pieces for pre-2.0.0 dungeons on startup. (NOT TESTED because i am unable to reproduce the crash for some reason) + * Nerfed the loot enchantment level per stage from 10/15/20/25/30 to 10/13/16/19/22 + * Introduced a new theme-driven decoration system. Themes (not sub-themes) can now have a list of decorations, e.g. vines like in the mossy layers + * Themes can now also force a sub-theme (or a sub-theme randomizer) to be used with them + * The dungeons now imitate vanilla's structure separation system, because it is not possible to actually hook into it right now. This fixes the weird and inconsistent generation. ([#34](https://github.com/XYROC/DungeonCrawl/issues/34)) + * Added some new corridor and node models for the nether layer + * Added a new loot room model (the old one won't get used by default anymore) + * Enabled the side rooms again, there are two different models right now + * Added some new node connectors, including one trap + * Removed corridor linker 2 (the small room with the water in the middle) from the corridor linker model pool. + Fixed Issues: + * Fixed monsters in stage 4 and 5 getting equipped with stage 1 items + * Fixed vines getting placed wrongly sometimes ([#39](https://github.com/XYROC/DungeonCrawl/issues/39)) + * Fixed a deadlock issue ([#35](https://github.com/XYROC/DungeonCrawl/issues/35)) + + Emendatus Enigmatica (EmendatusEnigmatica-1.15.2-1.0.6 --> EmendatusEnigmatica-1.15.2-1.0.8): + EmendatusEnigmatica-1.15.2-1.0.8: + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.8 + * Slight texture update. + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.7 + * Added Thermal Gem for compat. + * Added Sawdust + * Changed the name from Saltpeter to Potassium Nitrate (with both Niter and Saltpeter tags) + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.6 + * Added Thermal Materials, and Ores. + * Added Gears set. + * Updated Plates Textures. + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.5 + * Fixed a bug where harvesting ore with Silktouch is dropping EXP. + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.4 + * Added shapeless recipes to turn Ore Chunks into Ore Blocks + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.3 + * Added couple new tags to the Certus Quartz, Charged Certus Quartz, and Fluix Crystal + * Added the usage of DeferredWorkQueue during the World Gen to avoid a crash + * Added a Chunk to Ore recipes to the Stonecutter with all the ore variants to the Stonecutter Recipes + * Added Smelting and Blasting recipes for ingots/gems from ores + * Added JEI Integration + * Removed Skystone + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.2 + * World Gen Crash Fix + * AE2 and Minecraft Tags + * Added MinMaxCount on Redstone Ores Loot Tables + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.1 + * Minor Code Refactoring + * Texture Update + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.0 + * First Official Release + + EmendatusEnigmatica-1.15.2-1.0.7: + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.7 + * Added Thermal Gem for compat. + * Added Sawdust + * Changed the name from Saltpeter to Potassium Nitrate (with both Niter and Saltpeter tags) + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.6 + * Added Thermal Materials, and Ores. + * Added Gears set. + * Updated Plates Textures. + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.5 + * Fixed a bug where harvesting ore with Silktouch is dropping EXP. + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.4 + * Added shapeless recipes to turn Ore Chunks into Ore Blocks + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.3 + * Added couple new tags to the Certus Quartz, Charged Certus Quartz, and Fluix Crystal + * Added the usage of DeferredWorkQueue during the World Gen to avoid a crash + * Added a Chunk to Ore recipes to the Stonecutter with all the ore variants to the Stonecutter Recipes + * Added Smelting and Blasting recipes for ingots/gems from ores + * Added JEI Integration + * Removed Skystone + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.2 + * World Gen Crash Fix + * AE2 and Minecraft Tags + * Added MinMaxCount on Redstone Ores Loot Tables + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.1 + * Minor Code Refactoring + * Texture Update + Emendatus Enigmatica + MC 1.15.2 | Version 1.0.0 + * First Official Release + + Ensorcellation (ensorcellation-1.15.2-0.6.0b.jar --> ensorcellation-1.15.2-0.7.0b.jar): + ensorcellation-1.15.2-0.7.0b.jar: + No changelog available. + + Gauges and Switches (rsgauges-1.15.2-1.2.5-b1.jar --> rsgauges-1.15.2-1.2.5-b2.jar): + rsgauges-1.15.2-1.2.5-b2.jar: + * v1.2.5-b2 [F] Added placement checks to circumvent crashes (PR#33 by IceDragon200). + * v1.2.5-b1 [M] Modified global switch power placement default setting to strong. + [F] Fixed gauge/indicator placement (issue #27, thx Bobcat64) + ------------------------------------------------------------------- + * v1.2.4 [R] Release build v1.2.4. Release-to-release changes: + * Gauges are comparator output sensitive. + * Comparator Switch mode "Redstone Signal Strength" added. + * Config handling update. + * Bug fixes. + ------------------------------------------------------------------- + * v1.2.4-b2 [!] Forge update, requires Forge 1.15.2-31.2.20. + [F] Gauges explicitly tell adjacent blocks that they can connect Redstone. + [F] Fixed Indicator/Siren placement crash (issue #24, thx Jamzs3). + * v1.2.4-b1 [A] Gauges are also comparator output sensitive and can directly + show e.g. how full chests are. + [F] Industrial Machine Switch texture size fixed. + [U] Forge/mappings updated. + [M] JEI integration updated. + [M] Models updated to circumvent too dark GUI representations. + [M] Config handling updated. + [!] Mod config moved from 'common' to 'server' config, in case + of applied setting please double check. + ------------------------------------------------------------------- + * v1.2.3 [R] Release build v1.2.3. Release-to-release changes: + * Door Sensor added. + * Recipe fixes, lang files updated. + ------------------------------------------------------------------- + * v1.2.3-b3 [M] Block Category Detector: Fixed forge tag lookup (issue #21, thx Nodlehs). + [M] Comparator Switch recipe fixed (thx @itzbahb). + [M] En lang files typo fixes (thx @itzbahb). + * v1.2.3-b2 [F] Fixed switch link max distance config (issue #20, thx Rictu5). + * v1.2.3-b1 [A] Added Door Sensor switch. + [M] Lang file zh_cn updated (PR#19, scikirbypoke). + ------------------------------------------------------------------- + * v1.2.2 [R] Release build v1.2.2. Release-to-release changes: + * Valve Switch added. + * Elevator Button added. + * Minor fixes. + ------------------------------------------------------------------- + * v1.2.2-b2 [A] Added Elevator Button. + * v1.2.2-b1 [A] Added Valve Switch (idea and model by Jack M). + ------------------------------------------------------------------- + * v1.2.1 [R] Release build v1.2.1. Release-to-release changes: + * Industrial Comparator Switch added. + ------------------------------------------------------------------- + * v1.2.1-b1 [A] Added Industrial Comparator Switch. + * v1.2.0-b2 [A] Added GIT version logging. + [M] Lang en_us: Sensitive Glass block names adapted (issue #15, thx Dimentive). + * v1.2.0-b1 [A] Added JEI integration. + [M] Model "vanillafication" rework, part 2. + [D] Removed obsolete switches (registry not affected). + [M] Recipes simplified, recipe conditions unified. + [M] Code updates for version compatibility. + [A] All block are waterloggable (including Sensitive glass). + * v1.1.10-b4 [F] Removed tag reference to minecraft:dirts, which prevented any + recipes from being craftable. + * v1.1.10-b3 [A] Initial port. + + JAOPCA (JAOPCA-1.15.2-3.2.0.14.jar --> JAOPCA-1.15.2-3.2.0.15.jar): + JAOPCA-1.15.2-3.2.0.15.jar: + Added Thermal Expansion compat + Added AE2 compat + Added config option to disable parts of compat modules + Added module access to CraftTweaker compat + + McJtyLib (McJtyLib - 1.15-4.1.7 --> McJtyLib - 1.15-4.1.9): + McJtyLib - 1.15-4.1.9: + McJtyLib 1.15-4.1.9 + + McJtyLib - 1.15-4.1.8: + McJtyLib 1.15-4.1.8 + * New online help system on item/block tooltips (press F1) + * Refactored lots of internal code to make containers more consistent and work better + + MineColonies (minecolonies-0.13.247-ALPHA-universal.jar --> minecolonies-0.13.260-ALPHA-universal.jar): + minecolonies-0.13.260-ALPHA-universal.jar: + Minecolonies Changelog + Version: 0.13.260-ALPHA + * + Fix guard complain (#5790) + * + Fix barracks not counting as nearby building Fix homes trying to spawn at level 0 + * + Fix barracks not counting as nearby building Fix homes trying to spawn at level 0 + + minecolonies-0.13.257-ALPHA-universal.jar: + Minecolonies Changelog + Version: 0.13.257-ALPHA + * Add colony event log to Town Hall (#5751) + A colony event log that can be shown in the town hall instead of the permission event log. Replace all tabs in java files with spaces. Group a few more of the Town Hall lang keys together in the lang file. + + minecolonies-0.13.255-ALPHA-universal.jar: + Minecolonies Changelog + Version: 0.13.255-ALPHA + * ladder fix, invis fix fixes #5780 (#5781) + Ladder hotfix Invis hotfix + + minecolonies-0.13.254-ALPHA-universal.jar: + Minecolonies Changelog + Version: 0.13.254-ALPHA + * Job View Rework (#5773) + Add a way to serialize job data to views. Add clipboard filter Workers don't dropp off their food too quickly (baker overrides this behaviour) + + minecolonies-0.13.252-ALPHA-universal.jar: + Minecolonies Changelog + Version: 0.13.252-ALPHA + * Pathing tests (#5772) + Fixes citizens getting stuck at cocoa, playerheads and similar Allow citizens to walk on trapdoors and carpet if under the block is air. * Fix possible division through zero (#5775) + Fix early colony access before citizen is initialized(e.g. when getting damaged) Fix possible division through zero + + minecolonies-0.13.251-ALPHA-universal.jar: + Minecolonies Changelog + Version: 0.13.251-ALPHA + * Misc fixes and improvements (#5768) + Eliminate the florist producing gold blocks make rangers more likely to look for an elevation difference, this should encourage them to get on top of walls Add special recipes to dyer and mechanic when those buildings become level 3: Black dye from Charcoal, Cheaper lantern, cheaper rails clean up custom recipe Jsons to store integers as integers, and not strings + + minecolonies-0.13.250-BETA-universal.jar: + Minecolonies Changelog + Version: 0.13.250-BETA + * Some fixes (#5762) + Fix entity AI active too early, causing a crash Fix respawning missing checks Remove entity respawning at the TH when actually unloaded Fix can't spawn at messages appearing for unloaded citizens * Fix/multi warehouses (#5757) + Improve multi-warehouse support Courier assign themselves to the closest one with open spots around them. Improve chunk claim message a bit. * Raid biome chance and some fixes (#5756) * Fix build error (#5749) + Fix the build error introduced by my last pr. Sorry, i misclicked when making the last pr causing the import to get deleted instead of being added to the class, i should have double checked it again. * Fix AbstractEntityAIStructureWithWorkOrder.java (#5748) + Fix AbstractEntityAIStructureWithWorkOrder.java sending an incorrect chat message after finishing deconstructing a building. * Add citizens complaining about no guard nearby (#5744) + Citizens now occasionally complain about having no guard building nearby their home or work buildings. Guard happiness modifier now only requires 2/3 of worker to guard ratio, compared to previously 1:1 * Adds gate blocks, for additional raid protection (#5727) + This adds two gate blocks, one wooden one iron which are craftable by the mechanic. Those have a max size of 5x4 and combine their hardness depending on size and act like vanilla doors, so that citizens and any other door using mechanic should work with them. + Fix raiders still using their old anti-stuck mechanics in addition to the new stuckhandler ones. Fix herder trying to breed with one item. Fix raid difficulty starting at zero * Improve tool usage in the cook and other crafters (#5728) + fix tool usage for larger stacks during crafting add haybale decompression to farmer bit of cleanup here and there. Make compost a bit cheaper fix ingredient resolution for cookable foods - prestock of cookables should work now. * fix builder getting stuck, fix visitor wander (#5737) + Builder not getting stuck anymore in deconstruct Fix visitor wandering * Adds more dynamic difficulty to raids (#5726) + Colonies now have an individual raid difficulty, increasing and decreasing with success of raids for a better balanced experience. Colonies start with the lowest difficulty. Difficulty scales between 20% and 200%. Raids start happening based on a minimum raidlevel instead of plain citizencount now. + Extra difficulty utlities for raiders: + Teaming up: raiders get put on the same scoreboard team so they cannot hurt eachother Movementspeed bonus: Raiders can get a bit faster, letting them catch up to players better (high difficulty) Archer arrows can get pierce effect Archers gain range through difficulty Melees get slightly increased hit range at high difficulty Citizen homes and Tavern recruits now have spawntimes in relation to missing citizen count, allowing for easier recruiting. + Fix paths not properly getting their target position and reach target flags in the pathfinding. Fix guards sometimes starting to eat mid-combat due to not resetting their fight timer Fix a bug where randomPos sometimes returns non-air positions. * Delivery fixes (#5733) + Vastly improve smelter crafter madness Add some safeguards to racks * Feature/border announcement (#5734) + Adds player announcement regarding the change in colony size when a build is completed. Tells the player how to increase their colony size when they try and place a building outside the colony * Delivery fixed (#5725) + Fixes dman not delivering enough Fixes dman recovery Remove unnecessary copy operations * fix warehouse oopsy (#5723) + Fix warehouse for stack list requests * Small fix (#5719) + This has a minor dyer fix This also goes back to explicit structurize versions. We always want people to use the newest and not a range of it anyway. + + Productive Bees (productivebees-1.15.2-0.3.2.jar --> productivebees-1.15.2-0.3.3.jar): + productivebees-1.15.2-0.3.3.jar: + Backup before updating + * Added Patchouli book with general documentation + * Added JEI information to bees about flowering requirements + * Added production chance to the centrifuge recipe display in JEI + * Added obsidian bee + * Added TOP support to show what is in side a nest + * Changed quartz nest spawn calculation to hopefully make it easier to find a nest in the nether + * Moved some bees to data pack structure + * Fixed bees from data pack not showing on clients JEI + * Fixed plastic and silicon bee produce recipes + * Lowered the repopulation cooldown for nests + + Psi (Psi r1.2-83.jar --> Psi r1.2-84.jar): + Psi r1.2-84.jar: + Documentation WIP + If you want to help please join the Discord or DM Kamefrede#4501! + Changelog: [http://psi.vazkii.us/changelog.php#r1.2-834](http://psi.vazkii.us/changelog.php#r1.1-77) + + RFTools Base (RFToolsBase - 1.15-1.1.6 --> RFToolsBase - 1.15-1.1.7): + RFToolsBase - 1.15-1.1.7: + RFToolsBase 1.15-1.1.7 + + RFTools Builder (RFToolsBuilder - 1.15-2.1.8 --> RFToolsBuilder - 1.15-2.1.9): + RFToolsBuilder - 1.15-2.1.9: + RFToolsBuilder 1.15-2.1.9 + * Updated to latest McJtyLib + + RFTools Power (RFToolsPower - 1.15-2.2.4 --> RFToolsPower - 1.15-2.2.5): + RFToolsPower - 1.15-2.2.5: + RFToolsPower 1.15-2.2.5 + + RFToolsPower - 1.15-2.2.5: + RFToolsPower 1.15-2.2.5 + + RFTools Storage (RFToolsStorage - 1.15-1.1.9 --> RFToolsStorage - 1.15-1.1.10): + RFToolsStorage - 1.15-1.1.10: + RFToolsStorage 1.15-1.1.10 + + RFTools Utility (RFToolsUtility - 1.15-2.1.9 --> RFToolsUtility - 1.15-2.1.10): + RFToolsUtility - 1.15-2.1.10: + RFToolsUtility 1.15-2.1.10 + * Syringe no longer appears in every creative tab + * Correct translation for Syringe + * Forgot the recipe for the syringe + * Update to latest McJtyLib + + Thermal Cultivation (thermal_cultivation-1.15.2-0.2.2b.jar --> thermal_cultivation-1.15.2-0.3.0b.jar): + thermal_cultivation-1.15.2-0.3.0b.jar: + No changelog available. + + thermal_cultivation-1.15.2-0.2.4b.jar: + No changelog available. + + Thermal Expansion (thermal_expansion-1.15.2-0.2.3b.jar --> thermal_expansion-1.15.2-0.3.0b.jar): + thermal_expansion-1.15.2-0.3.0b.jar: + No changelog available. + + thermal_expansion-1.15.2-0.2.5b.jar: + No changelog available. + + thermal_expansion-1.15.2-0.2.4b.jar: + No changelog available. + + Thermal Foundation (thermal-1.15.2-0.2.3b.jar --> thermal-1.15.2-0.3.0b.jar): + thermal-1.15.2-0.3.0b.jar: + No changelog available. + + thermal-1.15.2-0.2.5b.jar: + No changelog available. + + thermal-1.15.2-0.2.4b.jar: + No changelog available. + + Thermal Innovation (thermal_innovation-1.15.2-0.2.2b.jar --> thermal_innovation-1.15.2-0.3.0b.jar): + thermal_innovation-1.15.2-0.3.0b.jar: + No changelog available. + + thermal_innovation-1.15.2-0.2.4b.jar: + No changelog available. + + Thermal Locomotion (thermal_locomotion-1.15.2-0.2.2b.jar --> thermal_locomotion-1.15.2-0.3.0b.jar): + thermal_locomotion-1.15.2-0.3.0b.jar: + No changelog available. + + thermal_locomotion-1.15.2-0.2.4b.jar: + No changelog available. + + Transport (Transport-1.15.2-2.4.0.jar --> Transport-1.15.2-2.4.1.jar): + Transport-1.15.2-2.4.1.jar: + BUG FIX BACKPORT PARTY + * Loaders now notice carts much faster + * Things significantly less likely to get caught in switches + * Module Configurator now properly renders it's contents always + * Routing Parsing now longer runs the first route under an OR + * Powered carts always go forward out of Holding rails + + Wither Skeleton Tweaks (WitherSkeletonTweaks-1.15.1-4.0.0.jar --> WitherSkeletonTweaks-1.15.2-4.0.2.jar): + WitherSkeletonTweaks-1.15.2-4.0.2.jar: + Pulled back all changes/fixes from 1.16+ + + XNet (XNet - 1.15-2.1.10 --> XNet - 1.15-2.1.11): + XNet - 1.15-2.1.11: + XNet 1.15-2.1.11 + + Xaero's Minimap (v20.21.0 for Forge 1.15.2 --> v20.22.0 for Forge 1.15.2): + v20.22.0 for Forge 1.15.2: + * Compatible with Xaero's World Map 1.10.0 or newer. Version 1.10.4 is recommended. + + Added a new option for changing the shape of the minimap to a circle. + * Fixed on-minimap waypoints and compass rendering slightly offset. + * Added a fallback renderer for patreon capes for when Optifine is installed because Optifine completely overrides them now. + + v20.22.0 for Fabric 1.15.2: + * Compatible with Xaero's World Map 1.10.0 or newer. Version 1.10.4 is recommended. + + Added a new option for changing the shape of the minimap to a circle. + * Fixed on-minimap waypoints and compass rendering slightly offset. + + Xaero's World Map (v1.10.3 for Forge 1.15.2 --> v1.10.4 for Forge 1.15.2): + v1.10.4 for Forge 1.15.2: + * Compatible with Xaero's Minimap / Better PVP 20.18.0 or newer. Version 20.22.0 is recommended. + * Added a fallback renderer for patreon capes for when Optifine is installed because Optifine completely overrides them now. + +Removed: +- Snow Under Trees + +Generated using [ChangelogGenerator 2.0.0-pre3](https://github.com/TheRandomLabs/ChangelogGenerator).