Skip to content

Commit

Permalink
Update 1.2.17
Browse files Browse the repository at this point in the history
  • Loading branch information
Fox2Code committed Sep 12, 2023
1 parent 18d99df commit f672f51
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void setRemoteNetworkId(int networkId) {

@Override
public void verifyRegisteredItemStack() {
if (this.itemID != 0 && this.stackSize <= 0) {
if (this.itemID != 0 && this.stackSize <= 0 && false) {
this.itemDamage = 0;
this.itemID = 0;
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ org.gradle.parallel=true
org.gradle.jvmargs=-Xmx1024m -XX:-UseGCOverheadLimit -Dfile.encoding=UTF-8

# FoxLoader properties
foxloader.version=1.2.16
foxloader.lastReIndevTransformerChanges=1.2.16
foxloader.version=1.2.17
foxloader.lastReIndevTransformerChanges=1.2.17

# ReIndev properties
reindev.clientUrl=https://cdn.fox2code.com/files/reindev_2.8.1_04.jar
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public void setRegisteredDisplayName(String displayName) {

@Override
public void verifyRegisteredItemStack() {
if (this.itemID != 0 && this.stackSize <= 0) {
if (this.itemID != 0 && this.stackSize <= 0 && false) {
this.itemDamage = 0;
this.itemID = 0;
}
Expand Down

0 comments on commit f672f51

Please sign in to comment.