mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
## Mirror of PR #23768: [haunted dungeon template](https://github.com/space-wizards/space-station-14/pull/23768) from <img src="https://avatars.githubusercontent.com/u/10567778?v=4" alt="space-wizards" width="22"/> [space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14) ###### `952b7f4c4e8e957c0c3765f7b20f2745c9297e27` PR opened by <img src="https://avatars.githubusercontent.com/u/99158783?v=4" width="16"/><a href="https://github.com/Emisse"> Emisse</a> at 2024-01-09 07:36:29 UTC --- PR changed 17 files with 4009 additions and 67 deletions. The PR had the following labels: --- <details open="true"><summary><h1>Original Body</h1></summary> > also for sloth when he gets to it > > Requires https://github.com/space-wizards/RobustToolbox/pull/4980 </details> Co-authored-by: SimpleStation14 <Unknown>
19 lines
422 B
C#
19 lines
422 B
C#
using Content.Shared.Storage;
|
|
|
|
namespace Content.Shared.Procedural.PostGeneration;
|
|
|
|
/// <summary>
|
|
/// Spawns entities inside corners.
|
|
/// </summary>
|
|
public sealed partial class CornerClutterPostGen : IPostDunGen
|
|
{
|
|
[DataField]
|
|
public float Chance = 0.50f;
|
|
|
|
/// <summary>
|
|
/// The default starting bulbs
|
|
/// </summary>
|
|
[DataField(required: true)]
|
|
public List<EntitySpawnEntry> Contents = new();
|
|
}
|