diff --git a/src/main/java/net/frozenorb/apiv3/model/User.java b/src/main/java/net/frozenorb/apiv3/model/User.java index 5be55c7..72ac26d 100644 --- a/src/main/java/net/frozenorb/apiv3/model/User.java +++ b/src/main/java/net/frozenorb/apiv3/model/User.java @@ -385,12 +385,12 @@ public final class User { if (!userType.isAllowed()) { proposedAccess = ImmutableMap.of( "allowed", false, - "message", "You cannot join MineHQ from a VPN." + "message", "You cannot join the server from a VPN." ); } else if (BannedAsn.findById(maxMindResult.getTraits().getAsn()) != null) { proposedAccess = ImmutableMap.of( "allowed", false, - "message", "You cannot join MineHQ from this ISP." + "message", "You cannot join the server from this ISP." ); } @@ -689,4 +689,4 @@ public final class User { usersCollection.replaceOne(new Document("_id", id), this, SyncUtils.vertxWrap(new MongoToVoidMongoCallback<>(callback))); } -} \ No newline at end of file +}