Disable buggy LR and SD's (#404)

- Disable Coinflip LR
- Disable Speed Runners Special Day
This commit is contained in:
Gabriel Hirakawa
2025-12-01 15:47:56 -08:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ public class LastRequestFactory(ILastRequestManager manager,
guard, false),
LRType.ROCK_PAPER_SCISSORS => new RockPaperScissors(plugin, services,
prisoner, guard),
LRType.COINFLIP => new Coinflip(plugin, services, prisoner, guard),
// LRType.COINFLIP => new Coinflip(plugin, services, prisoner, guard),
// LRType.RACE => new Race(plugin, manager, prisoner, guard,
// services.GetRequiredService<ILRRaceLocale>()),
LRType.MAG_FOR_MAG => new BulletForBullet(plugin, services, prisoner,

View File

@@ -24,7 +24,7 @@ public class SpecialDayFactory(IServiceProvider provider) : ISpecialDayFactory {
SDType.NOSCOPE => new NoScopeDay(plugin, provider),
SDType.OITC => new OneInTheChamberDay(plugin, provider),
//SDType.ROCKETJUMP => new RocketJumpDay(plugin, provider),
SDType.SPEEDRUN => new SpeedrunDay(plugin, provider),
//SDType.SPEEDRUN => new SpeedrunDay(plugin, provider),
SDType.TELEPORT => new TeleportDay(plugin, provider),
SDType.WARDAY => new WardayDay(plugin, provider),
_ => throw new NotImplementedException()