mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 19:49:35 +01:00
Warn about removal of ability to load plugins with spaces in Minecraft 1.12
By: md_5 <git@md-5.net>
This commit is contained in:
parent
75201d066c
commit
816701f233
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ public final class SimplePluginManager implements PluginManager {
|
||||||
continue;
|
continue;
|
||||||
} else if (description.rawName.indexOf(' ') != -1) {
|
} else if (description.rawName.indexOf(' ') != -1) {
|
||||||
server.getLogger().warning(String.format(
|
server.getLogger().warning(String.format(
|
||||||
"Plugin `%s' uses the space-character (0x20) in its name `%s' - this is discouraged",
|
"Plugin `%s' uses the space-character (0x20) in its name `%s' - this will not work in Minecraft 1.12",
|
||||||
description.getFullName(),
|
description.getFullName(),
|
||||||
description.rawName
|
description.rawName
|
||||||
));
|
));
|
||||||
|
|
Loading…
Reference in a new issue