Skip to content

Commit e0df47d

Browse files
committed
Use value passed into setReobf (fixes #982)
1 parent 2b35f6c commit e0df47d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/userdev/java/net/minecraftforge/gradle/userdev/UserDevExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public UserDevExtension(@Nonnull final Project project) {
2121
}
2222

2323
public void setReobf(boolean value) {
24-
this.reobf = false;
24+
this.reobf = value;
2525
}
2626

2727
public boolean getReobf() {

0 commit comments

Comments
 (0)