Use ternary for vp_query_cell

This works because CA wanted us to capture the return var, which we are just discarding. VP sometimes you are cursed but in a good way
This commit is contained in:
Oliver Booth 2022-11-30 18:57:27 +00:00
parent 9f16e6cc77
commit 189ef770eb
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
1 changed files with 4 additions and 9 deletions

View File

@ -33,14 +33,9 @@ public sealed partial class VirtualParadiseClient
lock (Lock) lock (Lock)
{ {
if (revision is not null) _ = revision is not null
{ ? vp_query_cell_revision(NativeInstanceHandle, cell.X, cell.Z, revision.Value)
vp_query_cell_revision(NativeInstanceHandle, cell.X, cell.Z, revision.Value); : vp_query_cell(NativeInstanceHandle, cell.X, cell.Z);
}
else
{
vp_query_cell(NativeInstanceHandle, cell.X, cell.Z);
}
} }
return channel.Reader.ReadAllAsync(); return channel.Reader.ReadAllAsync();