generated from NeoForgeMDKs/MDK-1.21-NeoGradle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
MCZME
committed
Aug 6, 2024
1 parent
f5d08e8
commit 4105e58
Showing
6 changed files
with
23 additions
and
31 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
src/generated/resources/.cache/85f12f813aff948f91f5cd129c0ffa86bcb17361
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
// 1.21 2024-08-06T21:56:13.987637 Languages: zh_cn for mod: lingshi | ||
e555acbe8820b73ef1de654d149cfca34bba5963 assets/lingshi/lang/zh_cn.json | ||
// 1.21 2024-08-06T22:30:49.6383033 Languages: zh_cn for mod: lingshi | ||
99918422a5d56dab647af19828bb12044cdf0336 assets/lingshi/lang/zh_cn.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"block.lingshi.rice": "稻米", | ||
"block.lingshi.rice_seedling": "稻苗", | ||
"block.lingshi.tea_tree": "茶树", | ||
"item.lingshi.rice_of_ear": "稻穗", | ||
"item.lingshi.rice_seedling": "稻苗", | ||
"item.lingshi.tea_leaf": "茶叶", | ||
"lingshi.lingshi_tab": "灵食" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package mczme.lingshi.common.block; | ||
|
||
import mczme.lingshi.common.registry.ModItems; | ||
import net.minecraft.world.level.ItemLike; | ||
import net.minecraft.world.level.block.CropBlock; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
public class RiceBlock extends CropBlock { | ||
public RiceBlock(Properties properties) { | ||
super(properties); | ||
} | ||
|
||
@Override | ||
protected @NotNull ItemLike getBaseSeedId() { | ||
return ModItems.RICE.get(); | ||
} | ||
} |
20 changes: 0 additions & 20 deletions
20
src/main/java/mczme/lingshi/common/item/RiceSeedlingItem.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters