Skip to content

Commit

Permalink
fixed grammar mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
TitasPi committed Aug 31, 2020
1 parent f20f95d commit 1cfae49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/pixylt/pixyspawners/LangEn.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ public static String getSpawnerGive(String receiver, int amount, String spawnerT
}
public static String getSpawnerGiveReceiver(String sender, int amount, String spawnerType){
if(amount == 1){
return Globals.prefix + ChatColor.LIGHT_PURPLE + sender + ChatColor.BLUE + " given you " + ChatColor.LIGHT_PURPLE + amount + " " + spawnerType + ChatColor.BLUE + " spawner.";
return Globals.prefix + ChatColor.LIGHT_PURPLE + sender + ChatColor.BLUE + " gave you " + ChatColor.LIGHT_PURPLE + amount + " " + spawnerType + ChatColor.BLUE + " spawner.";
} else {
return Globals.prefix + ChatColor.LIGHT_PURPLE + sender + ChatColor.BLUE + " given you " + ChatColor.LIGHT_PURPLE + amount + " " + spawnerType + ChatColor.BLUE + " spawner.";
return Globals.prefix + ChatColor.LIGHT_PURPLE + sender + ChatColor.BLUE + " gave you " + ChatColor.LIGHT_PURPLE + amount + " " + spawnerType + ChatColor.BLUE + " spawners.";
}
}
public static String playerNotFound = Globals.prefix + "Player was not found.";
Expand Down

0 comments on commit 1cfae49

Please sign in to comment.