修改指令

This commit is contained in:
yulong 2023-11-19 21:39:18 +08:00
parent 7a54da8e07
commit 9be89d97e1
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(() =>