mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-04 05:16:21 -04:00
Fixed a few things
This commit is contained in:
@@ -285,8 +285,8 @@ public class CommandService implements INetworkDispatch {
|
||||
if (visitor.getObject(i, 0) != null) {
|
||||
String commandName = ((String) visitor.getObject(i, 0)).toLowerCase();
|
||||
|
||||
if (commandName.equalsIgnoreCase(name) {
|
||||
boolean combatCommand = ((String) (visitor.getObject(i, 7)).length() > 0);
|
||||
if (commandName.equalsIgnoreCase(name)) {
|
||||
boolean combatCommand = (((String) (visitor.getObject(i, 7)).length() > 0);
|
||||
|
||||
if (combatCommand) {
|
||||
CombatCommand command = new CombatCommand(commandName);
|
||||
|
||||
Reference in New Issue
Block a user