Skip to content

Commit

Permalink
update for latest GHS
Browse files Browse the repository at this point in the history
  • Loading branch information
Lurkars committed Feb 4, 2024
1 parent 72c223b commit c5cc7fb
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<revision>0.85.1</revision>
<revision>0.86.0</revision>
</properties>

<parent>
Expand Down
20 changes: 20 additions & 0 deletions src/main/java/de/champonthis/ghs/server/model/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,8 @@ public class Settings {
@Required
private boolean standeeStats = false;
@Required
private boolean stats = true;
@Required
private boolean summons = true;
@Required
private boolean treasures = true;
Expand Down Expand Up @@ -1526,6 +1528,24 @@ public void setStandeeStats(boolean standeeStats) {
this.standeeStats = standeeStats;
}

/**
* Checks if is stats.
*
* @return true, if is stats
*/
public boolean isStats() {
return stats;
}

/**
* Sets the stats.
*
* @param stats the new stats
*/
public void setStats(boolean stats) {
this.stats = stats;
}

/**
* Sets the summons.
*
Expand Down

0 comments on commit c5cc7fb

Please sign in to comment.