From 80d0ecdc9b5a756aa3fdc399f44d53614df07fed Mon Sep 17 00:00:00 2001 From: Oarcinae Date: Mon, 2 Dec 2024 11:19:13 -0500 Subject: [PATCH] Update version and changelog. --- changelog.txt | 8 ++++++++ control.lua | 5 +++++ info.json | 2 +- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 4d8349d..9d72266 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,12 @@ --------------------------------------------------------------------------------------------------- +Version: 2.1.16 +Date: ???? + Changes: + - Add player color when sharing cross-force chat messages. Also changed the sound. + Modding: + - Add oarc-mod-on-config-changed and oarc-mod-on-chunk-generated-near-spawn events. + - Update template scenario to show how to use the new events to modify the spawn area and spawn options GUI. +--------------------------------------------------------------------------------------------------- Version: 2.1.15 Date: 2024-11-27 Bugfixes: diff --git a/control.lua b/control.lua index 44af137..2e8c779 100644 --- a/control.lua +++ b/control.lua @@ -153,6 +153,11 @@ script.on_event(defines.events.on_research_finished, function(event) SendBroadcastMsg({"oarc-research-finished", research.force.name, research.name}) end) +script.on_event(defines.events.on_cargo_pod_finished_ascending, function (event) + log("Cargo pod finished ascending") + log(serpent.block(event)) +end) + ---------------------------------------- -- CUSTOM OARC Events (shown here for demo and logging purposes) ---------------------------------------- diff --git a/info.json b/info.json index 3bd521e..5821058 100644 --- a/info.json +++ b/info.json @@ -1,6 +1,6 @@ { "name": "oarc-mod", - "version": "2.1.15", + "version": "2.1.16", "factorio_version": "2.0", "title": "Oarc Multiplayer Spawn", "author": "Oarcinae",