This repository was archived by the owner on Jun 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ public enum ItemType
2323 MEDKIT = 14 ,
2424 FLASHLIGHT = 15 ,
2525 MICRO_HID = 16 ,
26- SCP500 = 17 ,
27- SCP207 = 18 ,
26+ SCP_500 = 17 ,
27+ SCP_207 = 18 ,
2828 AMMO_12_GAUGE = 19 ,
2929 GUN_E11_SR = 20 ,
3030 GUN_CROSSVEC = 21 ,
@@ -37,8 +37,8 @@ public enum ItemType
3737 AMMO_762_X39 = 28 ,
3838 AMMO_9_X19 = 29 ,
3939 GUN_COM18 = 30 ,
40- SCP018 = 31 ,
41- SCP268 = 32 ,
40+ SCP_018 = 31 ,
41+ SCP_268 = 32 ,
4242 ADRENALINE = 33 ,
4343 PAINKILLERS = 34 ,
4444 COIN = 35 ,
@@ -48,22 +48,22 @@ public enum ItemType
4848 GUN_REVOLVER = 39 ,
4949 GUN_AK = 40 ,
5050 GUN_SHOTGUN = 41 ,
51- SCP330 = 42 ,
52- SCP2176 = 43 ,
53- SCP244a ,
54- SCP244b ,
55- SCP1853 ,
56- ParticleDisruptor
51+ SCP_330 = 42 ,
52+ SCP_2176 = 43 ,
53+ SCP_244_A ,
54+ SCP_244_B ,
55+ SCP_1853 ,
56+ PARTICLE_DISRUPTOR
5757 }
5858
5959 public enum ConsumableItem
6060 {
6161 MEDKIT = ItemType . MEDKIT ,
62- SCP500 = ItemType . SCP500 ,
63- SCP207 = ItemType . SCP207 ,
62+ SCP500 = ItemType . SCP_500 ,
63+ SCP207 = ItemType . SCP_207 ,
6464 ADRENALINE = ItemType . ADRENALINE ,
6565 PAINKILLERS = ItemType . PAINKILLERS ,
66- SCP1853 = ItemType . SCP1853
66+ SCP1853 = ItemType . SCP_1853
6767 }
6868
6969 public enum KnobSetting
Original file line number Diff line number Diff line change @@ -96,8 +96,8 @@ public enum GrenadeType
9696 {
9797 GRENADE_HE = ItemType . GRENADE_HE ,
9898 GRENADE_FLASH = ItemType . GRENADE_FLASH ,
99- SCP018 = ItemType . SCP018 ,
100- SCP2176 = ItemType . SCP2176
99+ SCP018 = ItemType . SCP_018 ,
100+ SCP2176 = ItemType . SCP_2176
101101 }
102102
103103 public enum StatusEffect
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ public enum WeaponType
1414 COM18 = ItemType . GUN_COM18 ,
1515 REVOLVER = ItemType . GUN_REVOLVER ,
1616 AK = ItemType . GUN_AK ,
17- SHOTGUN = ItemType . GUN_SHOTGUN
17+ SHOTGUN = ItemType . GUN_SHOTGUN ,
18+ PARTICLE_DISRUPTOR = ItemType . PARTICLE_DISRUPTOR
1819 }
1920
2021 public enum WeaponSound
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public class PluginManager
2828 public static readonly int SMOD_MINOR = 10 ;
2929 public static readonly int SMOD_REVISION = 1 ;
3030
31- public static readonly string SMOD_BUILD = "A " ;
31+ public static readonly string SMOD_BUILD = "B " ;
3232
3333 public static readonly string DEPENDENCY_FOLDER = "dependencies" ;
3434
You can’t perform that action at this time.
0 commit comments