This commit is contained in:
王志勋 2023-11-19 21:39:50 +08:00
commit 9ee6e72e94
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ public class Judgmentstate : MonoBehaviour
{
initiate_btn.gameObject.SetActive(false);
Pause_btn.gameObject.SetActive(true);
string msg = $"send2room " + "start";
string msg = $"send2room " + "StartDeduction";
_ = SyncCreateRoom.SendMessageAsync(msg);
});
Pause_btn.onClick.AddListener(() =>
@ -53,7 +53,7 @@ public class Judgmentstate : MonoBehaviour
initiate_btn.gameObject.SetActive(true);
Pause_btn.gameObject.SetActive(false);
string msg = $"send2room "+"stop";
string msg = $"send2room "+"Stop";
_ = SyncCreateRoom.SendMessageAsync(msg);
});
finish_btn.onClick.AddListener(() =>