From 3665e15920e3f038d7d5a85e6a1dcf1860423111 Mon Sep 17 00:00:00 2001 From: games647 Date: Wed, 9 Feb 2022 10:41:10 +0100 Subject: [PATCH] Add velocity driver hint Related #723 --- .../github/games647/fastlogin/core/shared/FastLoginCore.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/com/github/games647/fastlogin/core/shared/FastLoginCore.java b/core/src/main/java/com/github/games647/fastlogin/core/shared/FastLoginCore.java index cc2438d1..a50624ee 100644 --- a/core/src/main/java/com/github/games647/fastlogin/core/shared/FastLoginCore.java +++ b/core/src/main/java/com/github/games647/fastlogin/core/shared/FastLoginCore.java @@ -250,7 +250,8 @@ public class FastLoginCore

> { } catch (ClassNotFoundException notFoundEx) { Logger log = plugin.getLog(); log.warn("This driver {} is not supported on this platform", className); - log.warn("Please choose MySQL (Spigot+BungeeCord), SQLite (Spigot+Sponge) or MariaDB (Sponge)", notFoundEx); + log.warn("Please choose either MySQL (Spigot, BungeeCord), SQLite (Spigot, Sponge) or " + + "MariaDB (Sponge, Velocity)", notFoundEx); } return false;