Skip to content

Commit

Permalink
ITOV: Rearrange variables
Browse files Browse the repository at this point in the history
  • Loading branch information
soopercool101 committed Jul 24, 2023
1 parent 0f98072 commit 550a6aa
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions BrawlLib/SSBB/ResourceNodes/ProjectPlus/ITOVNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,17 @@ public string PokeAssistOverride
}
}

[Category("ITOV")]
public string StageItemFolder
{
get => Data.StageItemFolder;
set
{
Data.StageItemFolder = value;
SignalPropertyChange();
}
}

[Category("ITOV")]
[Description("Adds this number to the default maximum Pokémon (5 in vBrawl) which can spawn at one time")]
public sbyte PokemonOverload
Expand All @@ -100,17 +111,6 @@ public ItemOverrideSetting CommonOverride
set => Data._overrideCommon = value;
}

[Category("ITOV")]
public string StageItemFolder
{
get => Data.StageItemFolder;
set
{
Data.StageItemFolder = value;
SignalPropertyChange();
}
}

[Category("ITOV Pokémon Override Settings")]
public ItemOverrideSetting Torchic
{
Expand Down

0 comments on commit 550a6aa

Please sign in to comment.