mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 20:00:46 +00:00
Trim comma separation in items.csv
parsing.
This commit is contained in:
parent
9a714eb537
commit
781204aa20
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ public class ItemDb implements IConf, net.ess3.api.IItemDb {
|
|||
if (StringUtils.stripToNull(match) == null) {
|
||||
continue;
|
||||
}
|
||||
match = StringUtils.strip(match, "\"");
|
||||
match = StringUtils.strip(match.trim(), "\"");
|
||||
switch (col) {
|
||||
case 0:
|
||||
itemName = match.toLowerCase(Locale.ENGLISH);
|
||||
|
|
Loading…
Reference in a new issue