fix misplaced comma

This commit is contained in:
Darkere
2021-10-15 17:02:40 +02:00
parent faf24640bd
commit 46c0805a6c
4 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ public interface IGridFactory {
*
* @param player the player
* @param stack the stack
* @param slot the slot in the players inventory,or curio slot, otherwise -1
* @param slot the slot in the players inventory or curio slot, otherwise -1
* @return the grid, or null if a problem occurred
*/
@Nullable

View File

@@ -36,7 +36,7 @@ public interface IGridManager {
* @param id the grid factory id
* @param player the player
* @param stack the stack
* @param slot the slot in the players inventory,or curio slot, otherwise -1
* @param slot the slot in the players inventory or curio slot, otherwise -1
*/
void openGrid(ResourceLocation id, ServerPlayerEntity player, ItemStack stack, PlayerSlot slot);

View File

@@ -16,7 +16,7 @@ public interface INetworkItemManager {
*
* @param player the player that opened the network item
* @param stack the stack that has been opened
* @param slot the slot in the players inventory,or curio slot, otherwise -1
* @param slot the slot in the players inventory or curio slot, otherwise -1
*/
void open(PlayerEntity player, ItemStack stack, PlayerSlot slot);

View File

@@ -16,7 +16,7 @@ public interface INetworkItemProvider {
* @param handler the network item handler
* @param player the player
* @param stack the stack
* @param slot the slot in the players inventory,or curio slot, otherwise -1
* @param slot the slot in the players inventory or curio slot, otherwise -1
* @return the network item
*/
@Nonnull