You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Fika.Core/ConsoleCommands/FikaCommands.cs
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,9 @@
15
15
16
16
namespaceFika.Core.ConsoleCommands;
17
17
18
+
#pragma warning disable RCS1102
18
19
publicclassFikaCommands
20
+
#pragma warning restore RCS1102
19
21
{
20
22
#if DEBUG
21
23
[ConsoleCommand("bring","",null,"Teleports all AI to yourself as the host",[])]
@@ -301,11 +303,11 @@ public static void SpawnItem([ConsoleArgument("", "The templateId to spawn an it
301
303
/// Based on SSH's TarkyMenu command
302
304
/// </summary>
303
305
/// <param name="wildSpawnType"></param>
304
-
/// <param name="number"></param>
306
+
/// <param name="amount"></param>
305
307
[ConsoleCommand("spawnNPC","",null,"Spawn NPC with specified WildSpawnType")]
306
308
publicstaticvoidSpawnNPC([ConsoleArgument("assault","The WildSpawnType to spawn (use help for a list)")]stringwildSpawnType,[ConsoleArgument(1,"The amount of AI to spawn")]intamount)
Copy file name to clipboardExpand all lines: Fika.Core/FikaPlugin.cs
+10-41Lines changed: 10 additions & 41 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@
6
6
usingFika.Core.Bundles;
7
7
usingFika.Core.ConsoleCommands;
8
8
usingFika.Core.Main.Custom;
9
+
usingFika.Core.Main.Patches.InventoryController;
9
10
usingFika.Core.Main.Utils;
10
11
usingFika.Core.Networking.Http;
11
12
usingFika.Core.Networking.Websocket;
@@ -45,7 +46,7 @@ namespace Fika.Core;
45
46
[BepInDependency("com.SPT.debugging",BepInDependency.DependencyFlags.HardDependency)]// This is used so that we guarantee to load after spt-debugging, that way we can disable its patches
0 commit comments