diff --git a/changelog.txt b/changelog.txt index aae7163..ff04770 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,10 @@ --------------------------------------------------------------------------------------------------- +Version: 2.0.0 +Date: 24-10-26 + Changes: + - Version bump for base game 2.0 + - Drop integration with "Light Artillery", since it is not updated +--------------------------------------------------------------------------------------------------- Version: 1.1.1 Date: 2020-12-23 Features: diff --git a/data.lua b/data.lua index 235f82c..75f0763 100644 --- a/data.lua +++ b/data.lua @@ -14,5 +14,4 @@ data.raw.gun["artillery-wagon-cannon"].attack_parameters.sound = -- integrations -require("integrations.bigger-artillery.data") -require("integrations.lightArtillery.data") \ No newline at end of file +require("integrations.bigger-artillery.data") \ No newline at end of file diff --git a/info.json b/info.json index cef60e1..a55aa88 100644 --- a/info.json +++ b/info.json @@ -1,13 +1,12 @@ { "name": "EpicArtillerySounds", - "version": "1.1.1", + "version": "2.0.0", "title": "Epic Artillery Sounds", "author": "Wyrrrd", - "factorio_version": "1.1", + "factorio_version": "2.0", "dependencies": [ - "base >= 1.1.0", - "? lightArtillery >= 0.5.20", - "? bigger-artillery >= 0.2.01" + "base >= 2.0.0", + "? bigger-artillery >= 0.7.1" ], "description": "Bring the thunder to Factorio" } \ No newline at end of file diff --git a/integrations/lightArtillery/data.lua b/integrations/lightArtillery/data.lua deleted file mode 100644 index 2ea61cc..0000000 --- a/integrations/lightArtillery/data.lua +++ /dev/null @@ -1,13 +0,0 @@ -if mods["lightArtillery"] then - data.raw.item["derpy-artillery"].sound = - { - filename = "__EpicArtillerySounds__/sounds/KABOOM.ogg", - volume = 1 - } - - data.raw.gun["derpy-artillery-gun"].attack_parameters.sound = - { - filename = "__EpicArtillerySounds__/sounds/KABOOM.ogg", - volume = 1 - } -end \ No newline at end of file