mirror of
https://github.com/oshima-studios/OshimaGameModule.git
synced 2025-04-22 20:09:35 +08:00
NextCharacter 的同步改动
This commit is contained in:
parent
400fccbb26
commit
97613002ce
@ -206,7 +206,7 @@ namespace Oshima.FunGame.OshimaServers
|
||||
}
|
||||
|
||||
// 检查是否有角色可以行动
|
||||
Character? characterToAct = actionQueue.NextCharacter();
|
||||
Character? characterToAct = await actionQueue.NextCharacterAsync();
|
||||
|
||||
// 处理回合
|
||||
if (characterToAct != null)
|
||||
|
@ -88,7 +88,7 @@ namespace Oshima.FunGame.OshimaServers.Service
|
||||
}
|
||||
|
||||
// 检查是否有角色可以行动
|
||||
Character? characterToAct = actionQueue.NextCharacter();
|
||||
Character? characterToAct = await actionQueue.NextCharacterAsync();
|
||||
|
||||
// 处理回合
|
||||
if (characterToAct != null)
|
||||
@ -288,7 +288,7 @@ namespace Oshima.FunGame.OshimaServers.Service
|
||||
}
|
||||
|
||||
// 检查是否有角色可以行动
|
||||
Character? characterToAct = actionQueue.NextCharacter();
|
||||
Character? characterToAct = await actionQueue.NextCharacterAsync();
|
||||
|
||||
// 处理回合
|
||||
if (characterToAct != null)
|
||||
|
@ -260,7 +260,7 @@ namespace Oshima.FunGame.OshimaServers.Service
|
||||
}
|
||||
|
||||
// 检查是否有角色可以行动
|
||||
Character? characterToAct = actionQueue.NextCharacter();
|
||||
Character? characterToAct = await actionQueue.NextCharacterAsync();
|
||||
|
||||
// 处理回合
|
||||
if (characterToAct != null)
|
||||
|
Loading…
x
Reference in New Issue
Block a user