Skip to content

Commit

Permalink
Fix spawned groups error
Browse files Browse the repository at this point in the history
  • Loading branch information
ThisTestUser committed Sep 19, 2024
1 parent 68e3ae6 commit f12f49a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public int getGroupsSpawned() {
@Override
public void setGroupsSpawned(int groupsSpawned) {
try {
FieldUtils.writeField(this.raid, "L", groupsSpawned, true);
FieldUtils.writeField(this.raid, "J", groupsSpawned, true);
} catch (IllegalAccessException e) {
e.printStackTrace();
}
Expand Down

0 comments on commit f12f49a

Please sign in to comment.