Skip to content

Commit

Permalink
Add empty constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildTools committed Feb 16, 2020
1 parent 81608d5 commit aa9df12
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/com/nevakanezah/horseenhancer/HorseData.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ private enum Gender {

// CONSTRUCTORS

public HorseData() {
this.uniqueID = UUID.randomUUID();
}

public HorseData(Entity child, Entity father, Entity mother, double bias) {

if(child == null) return;
Expand Down

0 comments on commit aa9df12

Please sign in to comment.