diff --git a/luckydiamond/src/components/ChatComponent.vue b/luckydiamond/src/components/ChatComponent.vue index a73a836..7b52ccf 100644 --- a/luckydiamond/src/components/ChatComponent.vue +++ b/luckydiamond/src/components/ChatComponent.vue @@ -68,7 +68,7 @@ export default { }, ClaimDatamsg(msg) { const now = Date.now(); - if (!this.lastMsgTime || now - this.lastMsgTime >= 100) { + if (!this.lastMsgTime || now - this.lastMsgTime >= 1000) { SendMessageToChat(msg[0]); this.lastMsgTime = now; } else { @@ -135,5 +135,4 @@ export default {