From 26a6da50c6144cb21fbc19c1ca9236779f835135 Mon Sep 17 00:00:00 2001 From: Tomachi <8929706+book000@users.noreply.github.com> Date: Fri, 3 Jun 2022 21:31:35 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A8=B1=E5=8F=AF=E3=81=97=E3=81=A6?= =?UTF-8?q?=E3=81=84=E3=81=AA=E3=81=84=E5=9B=BD=E3=81=8B=E3=82=89=E3=81=AE?= =?UTF-8?q?=E3=83=AD=E3=82=B0=E3=82=A4=E3=83=B3=E3=81=8C=E3=81=A7=E3=81=8D?= =?UTF-8?q?=E3=81=A6=E3=81=97=E3=81=BE=E3=81=86=E4=B8=8D=E5=85=B7=E5=90=88?= =?UTF-8?q?=E3=81=AE=E4=BF=AE=E6=AD=A3=20(#840)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/jaoafa/mymaid4/event/Event_PlayerCheckPreLogin.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/jaoafa/mymaid4/event/Event_PlayerCheckPreLogin.java b/src/main/java/com/jaoafa/mymaid4/event/Event_PlayerCheckPreLogin.java index d2e9c6d08..753e89d70 100644 --- a/src/main/java/com/jaoafa/mymaid4/event/Event_PlayerCheckPreLogin.java +++ b/src/main/java/com/jaoafa/mymaid4/event/Event_PlayerCheckPreLogin.java @@ -91,12 +91,12 @@ public static void OnEvent_PlayerCheckPreLogin(AsyncPlayerPreLoginEvent event) { return; } - if (geoip != null && geoip.country() == null) { + if (geoip != null && (geoip.country() == null || geoip.country().getIsoCode() == null)) { // Unknown disallow(event, Component.text().append( Component.text("接続元国情報の取得に失敗しました。", NamedTextColor.WHITE), Component.text("当サーバでは、日本国外からのログインを禁止しています。", NamedTextColor.AQUA), - Component.text("あなたの接続元国情報を取得できなかったため、ログインを制限いたしました。", NamedTextColor.AQUA) + Component.text("あなたの接続元国情報を取得できなかったため、ログインを制限しました。", NamedTextColor.AQUA) ).build(), "Region unknown"); } else if (geoip != null && !geoip.country().getIsoCode().equals("JP")) { // 日本国外からのアクセスをすべて規制