Network entity ids (#4252)

This commit is contained in:
metalgearsloth
2023-09-11 09:42:55 +10:00
committed by GitHub
parent cb1d4ae843
commit 3fd731d917
131 changed files with 3266 additions and 1480 deletions

View File

@@ -38,14 +38,14 @@ public sealed partial class ToolshedParserTest : ToolshedTest
}
[Test]
public async Task EntityUidTypeParser()
public async Task EntityTypeParser()
{
await Server.WaitAssertion(() =>
{
ParseCommand("ent 1");
ParseCommand("ent c1");
// Clientside entities are a myth.
ExpectError<InvalidEntityUid>();
ExpectError<InvalidEntity>();
ParseCommand("ent foodigity");
});
}