Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Commit

Permalink
Fixed some item names
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlOfDuty committed Apr 14, 2022
1 parent 134f903 commit 573c549
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 17 deletions.
26 changes: 13 additions & 13 deletions Smod2/API/Item.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ public enum ItemType
MEDKIT = 14,
FLASHLIGHT = 15,
MICRO_HID = 16,
SCP500 = 17,
SCP207 = 18,
SCP_500 = 17,
SCP_207 = 18,
AMMO_12_GAUGE = 19,
GUN_E11_SR = 20,
GUN_CROSSVEC = 21,
Expand All @@ -37,8 +37,8 @@ public enum ItemType
AMMO_762_X39 = 28,
AMMO_9_X19 = 29,
GUN_COM18 = 30,
SCP018 = 31,
SCP268 = 32,
SCP_018 = 31,
SCP_268 = 32,
ADRENALINE = 33,
PAINKILLERS = 34,
COIN = 35,
Expand All @@ -48,22 +48,22 @@ public enum ItemType
GUN_REVOLVER = 39,
GUN_AK = 40,
GUN_SHOTGUN = 41,
SCP330 = 42,
SCP2176 = 43,
SCP244a,
SCP244b,
SCP1853,
ParticleDisruptor
SCP_330 = 42,
SCP_2176 = 43,
SCP_244_A,
SCP_244_B,
SCP_1853,
PARTICLE_DISRUPTOR
}

public enum ConsumableItem
{
MEDKIT = ItemType.MEDKIT,
SCP500 = ItemType.SCP500,
SCP207 = ItemType.SCP207,
SCP500 = ItemType.SCP_500,
SCP207 = ItemType.SCP_207,
ADRENALINE = ItemType.ADRENALINE,
PAINKILLERS = ItemType.PAINKILLERS,
SCP1853 = ItemType.SCP1853
SCP1853 = ItemType.SCP_1853
}

public enum KnobSetting
Expand Down
4 changes: 2 additions & 2 deletions Smod2/API/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ public enum GrenadeType
{
GRENADE_HE = ItemType.GRENADE_HE,
GRENADE_FLASH = ItemType.GRENADE_FLASH,
SCP018 = ItemType.SCP018,
SCP2176 = ItemType.SCP2176
SCP018 = ItemType.SCP_018,
SCP2176 = ItemType.SCP_2176
}

public enum StatusEffect
Expand Down
3 changes: 2 additions & 1 deletion Smod2/API/Weapon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ public enum WeaponType
COM18 = ItemType.GUN_COM18,
REVOLVER = ItemType.GUN_REVOLVER,
AK = ItemType.GUN_AK,
SHOTGUN = ItemType.GUN_SHOTGUN
SHOTGUN = ItemType.GUN_SHOTGUN,
PARTICLE_DISRUPTOR = ItemType.PARTICLE_DISRUPTOR
}

public enum WeaponSound
Expand Down
2 changes: 1 addition & 1 deletion Smod2/PluginManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class PluginManager
public static readonly int SMOD_MINOR = 10;
public static readonly int SMOD_REVISION = 1;

public static readonly string SMOD_BUILD = "A";
public static readonly string SMOD_BUILD = "B";

public static readonly string DEPENDENCY_FOLDER = "dependencies";

Expand Down

0 comments on commit 573c549

Please sign in to comment.