Skip to content

Commit 33595ad

Browse files
committed
162v1
1 parent 5d534d0 commit 33595ad

8 files changed

Lines changed: 7 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ littleMaidMob のメイドさんからミルクが採取できるようになる
1313

1414
## 前提
1515

16-
- Minecraft 1.5.2
17-
- ModLoader 1.5.2
18-
- YMTLib_152v1
16+
- Minecraft 1.6.2
17+
- ModLoader 1.6.2
18+
- YMTLib_162v1
1919
- MMM 氏制作の littleMaidMob が必要です。
2020

2121

@@ -80,6 +80,7 @@ limitations under the License.
8080

8181
## History
8282

83+
- 162v1: Minecraft1.6.2に対応しました
8384
- 152v1: Minecraft1.5.2に対応しました
8485
- 151v2: ミルクボウルとミルクシチューを追加しました
8586
- 151v1: 初版

WacoEntityMode_MobMilk.class

-16 Bytes
Binary file not shown.
File renamed without changes.
File renamed without changes.

mod/ymt/milk/ItemMilkStew.class

-21 Bytes
Binary file not shown.

mod/ymt/milk/ItemMilkStew.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ public ItemMilkStew(int id) {
4141

4242
@Override
4343
public Icon getIconFromDamage(int metadata) {
44+
if (textures == null)
45+
return null;
4446
return textures[metadata == 0 ? 0 : 1];
4547
}
4648

mod_MobMilk.class

88 Bytes
Binary file not shown.

mod_MobMilk.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public String getPriorities() {
3333

3434
@Override
3535
public String getVersion() {
36-
return "152v1";
36+
return "162v1";
3737
}
3838

3939
@Override

0 commit comments

Comments
 (0)