Skip to content

Commit

Permalink
Addded support for 'lakes'/'Verdant Falls' from Devotion update. (#525)
Browse files Browse the repository at this point in the history
  • Loading branch information
viliger2 authored Jul 25, 2024
1 parent 13ed57c commit e56a7cd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
10 changes: 10 additions & 0 deletions R2API.Director/DirectorAPIexternal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -363,6 +363,14 @@ public enum Stage
/// External / Internal Name : The Planetarium / voidstage
/// </summary>
ThePlanetarium = 1 << 29,

// New entries for Devotion Update below

/// <summary>
/// External / Internal Name : Verdant Falls / lakes
/// </summary>
VerdantFalls = 1 << 30,

}

/// <summary>
Expand Down Expand Up @@ -402,6 +410,7 @@ public enum Stage
"sulfurpools" => Stage.SulfurPools,
"voidraid" => Stage.ThePlanetarium,
"voidstage" => Stage.VoidLocus,
"lakes" => Stage.VerdantFalls,
_ => Stage.Custom,
};

Expand Down Expand Up @@ -450,6 +459,7 @@ public enum Stage
Stage.SulfurPools => "sulfurpools",
Stage.VoidLocus => "voidstage",
Stage.ThePlanetarium => "voidraid",
Stage.VerdantFalls => "lakes",
_ => "", // Stage.Custom
};

Expand Down
4 changes: 4 additions & 0 deletions R2API.Director/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ Alongside this, R2API.Director also comes bundled with DirectorAPIHelpers, which

## Changelog

### '2.1.2'

* Addded support for 'lakes'/'Verdant Falls' from Devotion update.

### '2.1.1'

* Fix `AddNewMonster` / `RemoveExistingMonster` helper methods not properly handling `arena` stage.
Expand Down
2 changes: 1 addition & 1 deletion R2API.Director/thunderstore.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ schemaVersion = "0.0.1"
[package]
namespace = "RiskofThunder"
name = "R2API_Director"
versionNumber = "2.1.1"
versionNumber = "2.1.2"
description = "API for easily modifiying the Director (RoR2 monster / interactable spawner) behaviour"
websiteUrl = "https://github.com/risk-of-thunder/R2API"
containsNsfwContent = false
Expand Down

0 comments on commit e56a7cd

Please sign in to comment.