From 7f813bc13ef6c03c35c60fe2dbd888c76fbd5317 Mon Sep 17 00:00:00 2001 From: Skye Telman Date: Fri, 4 Oct 2024 15:18:30 -0400 Subject: [PATCH 1/3] Fix error where some missing new settings caused nemesis to not be able to change settings --- nt-app/src/store/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nt-app/src/store/index.js b/nt-app/src/store/index.js index c1f6732..97115c3 100644 --- a/nt-app/src/store/index.js +++ b/nt-app/src/store/index.js @@ -63,6 +63,8 @@ export const flagInfo = { "NT_NEMESIS_nemesis_abilities": { name: "Nemesis abilities", tooltip: "Abilities will appear in each holy mountain with an NP cost." }, "NT_sync_steve": { name: "Sync Steve", tooltip: "Angers the gods for everyone." }, "NT_sync_orbs": { name: "Sync Orbs", tooltip: "When someone picks up an orb everyone else gets it too." }, + "NT_sync_orbs_no_curse": { name: "Friendly PW Orbs", tooltip: "Parallel World orbs won't send cursed hearts to other players. No effect without \"Sync Orbs\"" }, + "NT_sync_orb_count": { name: "Sync Orb Until", tooltip: "Everyone gets an orb until this number is hit. If 0, then there is no limit" }, "NT_world_randomize_loot": { name: "Randomize loot", tooltip: "Only applies when playing on the same seed, makes it so everyone gets different loot." }, "NT_sync_world_seed": { name: "Sync Seed", tooltip: "All players play in the same world seed (requires everyone to start a new game) 0 means random seed." }, "NT_death_penalty": { @@ -102,6 +104,8 @@ export const defaultFlags = { { id: "NT_NEMESIS_nemesis_abilities", type: "boolean", value: true, }, { id: "NT_sync_steve", type: "boolean", value: false, }, { id: "NT_sync_orbs", type: "boolean", value: false, }, + { id: "NT_sync_orbs_no_curse", type: "boolean", value: false, requires: [{"NT_sync_orbs": true}] }, //TODO actually check requires :) + { id: "NT_sync_orb_count", type: "number" , value: 0, }, { id: "NT_world_randomize_loot", type: "boolean", value: true, }, { id: "NT_sync_world_seed", type: "number" , value: 0, }, { id: "NT_death_penalty", type: "boolean", value: 'weak_respawn', choices: ['weak_respawn'], }, From d626dc52b0bb80fee54d010d1e3ed890384f372d Mon Sep 17 00:00:00 2001 From: Skye Telman Date: Fri, 4 Oct 2024 15:45:11 -0400 Subject: [PATCH 2/3] Fix empty checkbox and error where last noita standing is not selected in the dropdown --- nt-app/src/store/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nt-app/src/store/index.js b/nt-app/src/store/index.js index 97115c3..555a747 100644 --- a/nt-app/src/store/index.js +++ b/nt-app/src/store/index.js @@ -70,7 +70,7 @@ export const flagInfo = { "NT_death_penalty": { "weak_respawn": { name: "Last noita standing.", tooltip: "Run ends when there's only one player left." }, }, - "NT_ondeath_kick": { name: "Kick on death (do not disable)", tooltip: "Kicks whoever dies, more customisable soon™. "} + "NT_ondeath_kick": { name: "Kick on death", tooltip: "Kicks whoever dies, more customisable soon™. "} }, }; @@ -108,7 +108,7 @@ export const defaultFlags = { { id: "NT_sync_orb_count", type: "number" , value: 0, }, { id: "NT_world_randomize_loot", type: "boolean", value: true, }, { id: "NT_sync_world_seed", type: "number" , value: 0, }, - { id: "NT_death_penalty", type: "boolean", value: 'weak_respawn', choices: ['weak_respawn'], }, + { id: "NT_death_penalty", type: "enum", value: 'weak_respawn', choices: ['weak_respawn'], }, { id: "NT_ondeath_kick", type: "boolean", value: true, } ] }; From 4e0353308d914694d265f0d91e4075773f395304 Mon Sep 17 00:00:00 2001 From: Skye Telman Date: Fri, 4 Oct 2024 15:49:37 -0400 Subject: [PATCH 3/3] v0.11.3 --- nt-app/package.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nt-app/package.json b/nt-app/package.json index 87b54cb..7500687 100644 --- a/nt-app/package.json +++ b/nt-app/package.json @@ -1,6 +1,6 @@ { "name": "nt-app", - "version": "0.11.2", + "version": "0.11.3", "author": "Noita-Together", "description": "Allows you to play noita with friends...", "repository": "https://github.com/Noita-Together/noita-together", diff --git a/package.json b/package.json index c565c73..f39439b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "noita-together", "private": true, - "version": "0.11.2", + "version": "0.11.3", "packageManager": "yarn@3.5.1", "workspaces": [ "nt-app/",