Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Commit

Permalink
fix: 許可していない国からのログインができてしまう不具合の修正 (#840)
Browse files Browse the repository at this point in the history
  • Loading branch information
book000 authored Jun 3, 2022
1 parent 8ebe2c3 commit 26a6da5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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")) {
// 日本国外からのアクセスをすべて規制
Expand Down

0 comments on commit 26a6da5

Please sign in to comment.