fix: Build

This commit is contained in:
Jakub Žitník 2025-03-26 20:57:37 +01:00
parent c674663cc0
commit 2fb1929efe
Signed by: jzitnik
GPG Key ID: C577A802A6AF4EF3
2 changed files with 1 additions and 4 deletions

View File

@ -2,12 +2,9 @@ package cz.jzitnik.game.entities.items.registry.items.blocks;
import cz.jzitnik.game.SpriteLoader;
import cz.jzitnik.game.annotations.ItemRegistry;
import cz.jzitnik.game.annotations.PlaceSound;
import cz.jzitnik.game.core.sound.SoundKey;
import cz.jzitnik.game.entities.items.Item;
import cz.jzitnik.game.entities.items.ItemType;
@PlaceSound(SoundKey.DIRT)
@ItemRegistry("dirt")
public class DirtItem extends Item {
public DirtItem() {

View File

@ -7,7 +7,7 @@ import cz.jzitnik.game.core.sound.SoundKey;
import cz.jzitnik.game.entities.items.Item;
import cz.jzitnik.game.entities.items.ItemType;
@PlaceSound(SoundKey.DIRT)
@PlaceSound(SoundKey.GRASS)
@ItemRegistry("grass")
public class GrassItem extends Item {
public GrassItem() {