From 2ef84e640716894b76b57c5afa92a6a4f08a9e21 Mon Sep 17 00:00:00 2001 From: aqw42 Date: Fri, 30 May 2025 17:15:51 +0200 Subject: [PATCH] anning disconnected player sends message in chat --- src/core/execution/PlayerExecution.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core/execution/PlayerExecution.ts b/src/core/execution/PlayerExecution.ts index 344837a02..d68d1eae5 100644 --- a/src/core/execution/PlayerExecution.ts +++ b/src/core/execution/PlayerExecution.ts @@ -82,6 +82,11 @@ export class PlayerExecution implements Execution { ) { const closestAlly = this.getMoreSharedBorderAlly(); if (closestAlly) { + this.mg.displayMessage( + `Annexed offline player ${this.player.displayName()}`, + MessageType.INFO, + closestAlly.id(), + ); this.giveaway(closestAlly); } return;