1
0
mirror of https://github.com/Oarcinae/FactorioScenarioMultiplayerSpawn.git synced 2024-12-04 09:43:00 +02:00

Update version and changelog.

This commit is contained in:
Oarcinae 2024-12-02 11:19:13 -05:00
parent 3f6f92e4aa
commit 80d0ecdc9b
3 changed files with 14 additions and 1 deletions

View File

@ -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:

View File

@ -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)
----------------------------------------

View File

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