-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Initial 1.20.0 support * Fix creative inventory RIDs
- Loading branch information
Showing
16 changed files
with
12,001 additions
and
10,594 deletions.
There are no files selected for viewing
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,6 +1,6 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package cn.nukkit.item; | ||
|
||
public class ItemRecord5 extends ItemRecord { | ||
|
||
public ItemRecord5() { | ||
this(0, 1); | ||
} | ||
|
||
public ItemRecord5(Integer meta) { | ||
this(meta, 1); | ||
} | ||
|
||
public ItemRecord5(Integer meta, int count) { | ||
super(RECORD_5, meta, count); | ||
} | ||
|
||
@Override | ||
public String getSoundId() { | ||
return "record.5"; | ||
} | ||
} |
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,21 @@ | ||
package cn.nukkit.item; | ||
|
||
public class ItemRecordRelic extends ItemRecord { | ||
|
||
public ItemRecordRelic() { | ||
this(0, 1); | ||
} | ||
|
||
public ItemRecordRelic(Integer meta) { | ||
this(meta, 1); | ||
} | ||
|
||
public ItemRecordRelic(Integer meta, int count) { | ||
super(RECORD_RELIC, meta, count); | ||
} | ||
|
||
@Override | ||
public String getSoundId() { | ||
return "record.relic"; | ||
} | ||
} |
Oops, something went wrong.