Comments should follow a space.

This commit is contained in:
MobiusDevelopment
2022-07-15 11:02:22 +00:00
parent 48889ed549
commit 939e56683e
22 changed files with 95 additions and 95 deletions

View File

@@ -420,11 +420,11 @@ public class AdminEnchant implements IAdminCommandHandler
// if enchant value is 0 - show "blank instead of 0
if (currentEnch != 0)
{
getVars = getVars.replace("%ar" + i + "_ench%", Integer.toString(currentEnch));// send ench value
getVars = getVars.replace("%ar" + i + "_ench%", Integer.toString(currentEnch)); // send ench value
}
else
{
getVars = getVars.replace("%ar" + i + "_ench%", " ");// send "space" so displays icon correctly
getVars = getVars.replace("%ar" + i + "_ench%", " "); // send "space" so displays icon correctly
}
}
}
@@ -458,11 +458,11 @@ public class AdminEnchant implements IAdminCommandHandler
// if enchant value is 0 - show "blank instead of 0
if (currentEnch != 0)
{
getVars = getVars.replace("%ag" + i + "_ench%", Integer.toString(currentEnch));// send ench value
getVars = getVars.replace("%ag" + i + "_ench%", Integer.toString(currentEnch)); // send ench value
}
else
{
getVars = getVars.replace("%ag" + i + "_ench%", " ");// send "space" so displays icon correctly
getVars = getVars.replace("%ag" + i + "_ench%", " "); // send "space" so displays icon correctly
}
}
}