Added support for spaces in Player Disguises.

Use the "\_" (backslash underscore) to place a space in a name.

Example: /d player The\_Great\_Apple
This commit is contained in:
NavidK0 2015-07-18 00:50:21 -04:00
parent 8c633adb8e
commit bdb436711f
3 changed files with 3 additions and 2 deletions

View File

@ -13,7 +13,7 @@ println 'Compiling LibsDisguises via Gradle ver. ' + gradle.gradleVersion
sourceCompatibility = '1.7'
ext.spigotVersion = '1.8.7-R0.1-SNAPSHOT'
ext.disguisesVersion = '8.6.1'
ext.disguisesVersion = '8.6.2'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'

View File

@ -369,6 +369,7 @@ public abstract class BaseDisguiseCommand implements CommandExecutor {
.get(args[1].toLowerCase()))) {
throw new DisguiseParseException(ChatColor.RED + "Error! You don't have permission to use that name!");
}
args[1] = args[1].replace("\\_", " ");
// Construct the player disguise
disguise = new PlayerDisguise(ChatColor.translateAlternateColorCodes('&', args[1]));
toSkip++;

View File

@ -1,6 +1,6 @@
name: LibsDisguises
main: me.libraryaddict.disguise.LibsDisguises
version: 8.6.1
version: 8.6.2
author: libraryaddict
authors: [Byteflux, Navid K.]
depend: [ProtocolLib]