diff --git a/hwe/ts/components/MessagePanel.vue b/hwe/ts/components/MessagePanel.vue index c147708c..97ebc7b7 100644 --- a/hwe/ts/components/MessagePanel.vue +++ b/hwe/ts/components/MessagePanel.vue @@ -296,7 +296,11 @@ function _updateLatestMsg(msg: MsgItem) { } if (msgType == "diplomacy") { + if (permissionLevel.value < 4){ + return; + } const [toastID, latestMsgID] = latestDiplomacyMsgToastInfo.value; + if (msg.id <= latestMsgID) { return; }