mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Fix empty display name for Feeder
This commit is contained in:
parent
fc75b13b86
commit
c418b867ff
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ public class TileEntityFeeder extends TileEntityInventoryBase implements MenuPro
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Component getDisplayName() {
|
public Component getDisplayName() {
|
||||||
return Component.empty();
|
return Component.translatable("container.actuallyadditions.feeder");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
|
|
Loading…
Reference in a new issue