Fixed broken tests

This commit is contained in:
EvilFactory
2024-10-22 14:12:44 -03:00
parent 14d3402b8d
commit 32525b5676
4 changed files with 11 additions and 4 deletions

View File

@@ -93,6 +93,7 @@ public class ClientServerTests : IDisposable
currentServer = new GameServer(
name: ServerName,
listenIp: null,
port: NetConfig.DefaultPort,
queryPort: NetConfig.DefaultQueryPort,
maxPlayers: 1,
@@ -126,4 +127,4 @@ public class ClientServerTests : IDisposable
OnTestsFinished();
GC.SuppressFinalize(this);
}
}
}

View File

@@ -1,4 +1,6 @@
using Barotrauma;
extern alias Client;
using Client::Barotrauma;
using MoonSharp.Interpreter;
using System;
using System.Collections.Concurrent;

View File

@@ -1,4 +1,6 @@
using Barotrauma;
extern alias Client;
using Client::Barotrauma;
using Microsoft.Xna.Framework;
using MoonSharp.Interpreter;
using System;

View File

@@ -1,4 +1,6 @@
using Barotrauma;
extern alias Client;
using Client::Barotrauma;
using System;
using System.Runtime.ExceptionServices;