From 8748ea945695208f5163fb230d88cba3cbc14d29 Mon Sep 17 00:00:00 2001
From: Someone <someone@somenet.org>
Date: Sun, 27 Oct 2024 02:32:37 +0100
Subject: [PATCH] RELEASE 2.0.2 - Correctly skip spamming non-nauvis. This time
 for real... hopefully

---
 changelog.txt | 7 +++++++
 control.lua   | 5 ++---
 info.json     | 2 +-
 3 files changed, 10 insertions(+), 4 deletions(-)

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",
-- 
2.43.0