Fix IDE0053
This commit is contained in:
committed by
Pavel Penev
parent
37afd6094e
commit
939f715e3c
@@ -65,7 +65,7 @@ namespace OpenRA
|
||||
{
|
||||
var newConnection = new NetworkConnection(endpoint);
|
||||
if (recordReplay)
|
||||
newConnection.StartRecording(() => { return TimestampedFilename(); });
|
||||
newConnection.StartRecording(() => TimestampedFilename());
|
||||
|
||||
var om = new OrderManager(newConnection);
|
||||
JoinInner(om);
|
||||
@@ -618,10 +618,7 @@ namespace OpenRA
|
||||
|
||||
if (orderManager.TryTick())
|
||||
{
|
||||
Sync.RunUnsynced(world, () =>
|
||||
{
|
||||
world.OrderGenerator.Tick(world);
|
||||
});
|
||||
Sync.RunUnsynced(world, () => world.OrderGenerator.Tick(world));
|
||||
|
||||
world.Tick();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user