Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: Only availaible for Christmas and AprilFools #394

Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions EXILED/Exiled.API/Enums/EffectType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -263,21 +263,25 @@ public enum EffectType
/// <summary>
/// Makes you a flamingo.
/// </summary>
[Obsolete("Only availaible for Christmas and AprilFools.")]
BecomingFlamingo,

/// <summary>
/// Makes you a Child after eating Cake.
/// </summary>
[Obsolete("Only availaible for Christmas and AprilFools.")]
Scp559,

/// <summary>
/// Scp956 found you.
/// </summary>
[Obsolete("Only availaible for Christmas and AprilFools.")]
Scp956Target,

/// <summary>
/// you are snowed.
/// </summary>
[Obsolete("Only availaible for Christmas and AprilFools.")]
Snowed,
}
}
6 changes: 3 additions & 3 deletions EXILED/Exiled.API/Extensions/EffectTypeExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@ public static class EffectTypeExtension
{ EffectType.AntiScp207, typeof(AntiScp207) },
{ EffectType.Scanned, typeof(Scanned) },
{ EffectType.SilentWalk, typeof(SilentWalk) },
#pragma warning disable CS0618
{ EffectType.Marshmallow, typeof(MarshmallowEffect) },
#pragma warning restore CS0618
{ EffectType.Strangled, typeof(Strangled) },
{ EffectType.Ghostly, typeof(Ghostly) },
{ EffectType.FogControl, typeof(FogControl) },
Expand All @@ -78,10 +75,13 @@ public static class EffectTypeExtension
{ EffectType.SeveredEyes, typeof(SeveredEyes) },
{ EffectType.PitDeath, typeof(PitDeath) },
{ EffectType.Blurred, typeof(Blurred) },
#pragma warning disable CS0618
{ EffectType.Marshmallow, typeof(MarshmallowEffect) },
{ EffectType.BecomingFlamingo, typeof(BecomingFlamingo) },
{ EffectType.Scp559, typeof(Scp559Effect) },
{ EffectType.Scp956Target, typeof(Scp956Target) },
{ EffectType.Snowed, typeof(Snowed) },
#pragma warning restore CS0618
});

/// <summary>
Expand Down
1 change: 1 addition & 0 deletions EXILED/Exiled.API/Features/Roles/Scp1507Role.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ namespace Exiled.API.Features.Roles
/// <summary>
/// Defines a role that represents SCP-1507.
/// </summary>
[Obsolete("Only availaible for Christmas and AprilFools.")]
public class Scp1507Role : FpcRole, ISubroutinedScpRole, IHumeShieldRole, ISpawnableScp
{
/// <summary>
Expand Down
Loading