Skip to content
Open
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
3 changes: 3 additions & 0 deletions EXILED/Exiled.API/Features/Pickups/JailbirdPickup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ internal override void ReadItemInfo(Item item)

if (item is Jailbird jailBirditem)
{
// TODO: Remove if this is fixed https://git.scpslgame.com/northwood-qa/scpsl-bug-reporting/-/issues/2816
jailBirditem.Base._deterioration.RecheckUsage();

MeleeDamage = jailBirditem.MeleeDamage;
ChargeDamage = jailBirditem.ChargeDamage;
FlashDuration = jailBirditem.FlashDuration;
Expand Down
10 changes: 6 additions & 4 deletions EXILED/Exiled.Events/Handlers/Internal/Round.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ namespace Exiled.Events.Handlers.Internal
using Exiled.API.Extensions;
using Exiled.API.Features;
using Exiled.API.Features.Core.UserSettings;
using Exiled.API.Features.Doors;
using Exiled.API.Features.Items;
using Exiled.API.Features.Pools;
using Exiled.API.Features.Roles;
Expand All @@ -23,17 +24,14 @@ namespace Exiled.Events.Handlers.Internal
using Exiled.Events.EventArgs.Scp049;
using Exiled.Loader;
using Exiled.Loader.Features;
using Interactables.Interobjects.DoorUtils;
using InventorySystem;
using InventorySystem.Items.Firearms.Attachments;
using InventorySystem.Items.Firearms.Attachments.Components;
using InventorySystem.Items.Usables;
using InventorySystem.Items.Usables.Scp244.Hypothermia;
using InventorySystem.Items.Usables.Scp330;
using PlayerRoles;
using PlayerRoles.FirstPersonControl;
using PlayerRoles.RoleAssign;
using UnityEngine;
using Utils.Networking;
using Utils.NonAllocLINQ;

/// <summary>
Expand All @@ -60,6 +58,10 @@ public static void OnWaitingForPlayers()

if (Events.Instance.Config.Debug)
Patches.Events.Map.Generating.Benchmark();

// TODO: Remove when this has been fixed https://git.scpslgame.com/northwood-qa/scpsl-bug-reporting/-/issues/1560
Door door = Door.Get(DoorType.Scp079Armory);
door.AllowsScp106 = false;
}

/// <inheritdoc cref="Handlers.Server.OnRestartingRound" />
Expand Down
Loading