Skip to content

Commit

Permalink
Small bug fix
Browse files Browse the repository at this point in the history
Vote substring on some packs removes letters
  • Loading branch information
nightw0lv committed Jan 14, 2021
1 parent afb9ffa commit bb08e76
Show file tree
Hide file tree
Showing 30 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion HighFive/FandC/src/itopz/com/command/VoteCMD.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, Player player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
2 changes: 1 addition & 1 deletion HighFive/Mythras/src/itopz/com/command/VoteCMD.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, Player player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
2 changes: 1 addition & 1 deletion HighFive/Remorse/src/itopz/com/command/VoteCMD.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, Player player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
2 changes: 1 addition & 1 deletion HighFive/Scripts/src/itopz/com/command/VoteCMD.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, Player player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
2 changes: 1 addition & 1 deletion HighFive/ScriptsZaken/src/itopz/com/command/VoteCMD.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, Player player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
2 changes: 1 addition & 1 deletion HighFive/aVa/src/itopz/com/command/VoteCMD.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, Player player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
2 changes: 1 addition & 1 deletion Interlude/Frozen/src/itopz/com/command/VoteCMD.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, L2PcInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
2 changes: 1 addition & 1 deletion Interlude/Hellas/src/itopz/com/command/VoteCMD.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, L2PcInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
2 changes: 1 addition & 1 deletion Interlude/aCis/src/itopz/com/command/VoteCMD.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(final String command, final Player player)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
2 changes: 1 addition & 1 deletion Interlude/lucera/src/itopz/com/command/VoteCMD.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, Player player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, PlayerInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public class VoteCMD implements IVoicedCommandHandler
@Override
public boolean useVoicedCommand(String command, L2PcInstance player, String s1)
{
final String TOPSITE = command.substring(1).toUpperCase();
final String TOPSITE = command.replace(".", "").toUpperCase();

// check if allowed the individual command to run
if (TOPSITE.equals("ITOPZ") && !Configurations.ITOPZ_INDIVIDUAL_REWARD)
Expand Down

0 comments on commit bb08e76

Please sign in to comment.