Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions Celeste.Mod.mm/Patches/SeekerBarrier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@

namespace Celeste {
public class patch_SeekerBarrier : SeekerBarrier {
public patch_SeekerBarrier(EntityData data, Vector2 offset) : base(data, offset) {
// no-op. MonoMod ignores this - we only need this to make the compiler shut up.

[MonoModConstructor]
[MonoModReplace]
public patch_SeekerBarrier(EntityData data, Vector2 offset)
: base(data.Position + offset, data.Width, data.Height) {

AllowStaticMovers = data.Bool("allowStaticMovers", true);
}

[MonoModIgnore]
Expand Down
Loading