Fixed missing space in pottery messages

This commit is contained in:
Tobias H. 2024-10-08 06:57:51 +00:00 committed by Ryan
parent 7d32e77860
commit 01b5e59250

View file

@ -56,7 +56,7 @@ public final class FirePotteryPulse extends SkillPulse<Item> {
return false;
}
if (!player.getInventory().containsItem(pottery.getUnfinished())) {
player.getPacketDispatch().sendMessage("You need a " + pottery.name().toLowerCase() + "in order to do this.");
player.getPacketDispatch().sendMessage("You need a " + pottery.name().toLowerCase() + " in order to do this.");
return false;
}
return true;