From: Someone Date: Sun, 27 Oct 2024 01:32:37 +0000 (+0100) Subject: RELEASE 2.0.2 - Correctly skip spamming non-nauvis. This time for real... hopefully X-Git-Url: https://git.somenet.org/factorio/some-resourcespam.git/commitdiff_plain?ds=inline RELEASE 2.0.2 - Correctly skip spamming non-nauvis. This time for real... hopefully --- diff --git a/changelog.txt b/changelog.txt index f54abea..de71dcb 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,10 @@ +--------------------------------------------------------------------------------------------------- +Version: 2.0.2 +Date: 2024-10-27 + + Changed: + - Correctly skip spamming non-nauvis. This time for real... hopefully. + --------------------------------------------------------------------------------------------------- Version: 2.0.1 Date: 2024-10-27 diff --git a/control.lua b/control.lua index 621ed4c..39c81ff 100644 --- a/control.lua +++ b/control.lua @@ -1,8 +1,7 @@ -- Iterate over every tile in the new chunk and spam with random resources, if empty and possible. script.on_event(defines.events.on_chunk_generated, function (event) - -- this mod is intended as an early game challenge. Therefore do nothing on non-nauvis. - if not event.surface.planet then return end - if not event.surface.planet.name ~= "nauvis" then return end + -- this mod is intended as an early game challenge. Therefore do nothing on any non-initial surface. + if not (event.surface.index == 1) then return end -- prevent one big continuous patch if (event.area.left_top.x/32)%10 == 5 or (event.area.left_top.y/32)%10 == 5 then diff --git a/info.json b/info.json index 27ff1b9..82549e2 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "some-resourcespam", - "version": "2.0.1", + "version": "2.0.2", "title": "Some resource spam", "author": "someone1337", "homepage": "https://git.somenet.org/factorio/some-resourcespam.git",