Skip to content

Commit

Permalink
Merge pull request #210 from Noita-Together/next
Browse files Browse the repository at this point in the history
Next
  • Loading branch information
SkyeOfBreeze authored Oct 4, 2024
2 parents fd23d58 + 4e03533 commit 50b29e9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nt-app/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
8 changes: 6 additions & 2 deletions nt-app/src/store/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,14 @@ 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": {
"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™. "}
},
};

Expand Down Expand Up @@ -102,9 +104,11 @@ 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'], },
{ id: "NT_death_penalty", type: "enum", value: 'weak_respawn', choices: ['weak_respawn'], },
{ id: "NT_ondeath_kick", type: "boolean", value: true, }
]
};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "noita-together",
"private": true,
"version": "0.11.2",
"version": "0.11.3",
"packageManager": "[email protected]",
"workspaces": [
"nt-app/",
Expand Down

0 comments on commit 50b29e9

Please sign in to comment.