We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2adf733 commit a8a9b0aCopy full SHA for a8a9b0a
scp035/Logic.cs
@@ -47,7 +47,8 @@ private void RemovePossessedItems()
47
{
48
for (int i = 0; i < scpPickups.Count; i++)
49
50
- scpPickups.ElementAt(i).Key?.Delete();
+ Pickup p = scpPickups.ElementAt(i).Key;
51
+ if (p != null) p.Delete();
52
}
53
scpPickups.Clear();
54
scp035/Plugin.cs
@@ -8,7 +8,7 @@ namespace scp035
8
name = "SCP-035",
9
description = "Adds SCP-035 to the game.",
10
id = "cyan.scp035",
11
- version = "1.5.1",
+ version = "1.5.2",
12
SmodMajor = 3,
13
SmodMinor = 0,
14
SmodRevision = 0
0 commit comments