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 Nov 19, 2023
1 parent 02ae1fa commit 2618c82
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 @@ -8,7 +8,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<revision>0.80.1</revision>
<revision>0.81.1</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 @@ -132,6 +132,8 @@ public class Settings {
@Required
private boolean randomStandees = false;
@Required
private boolean removeUnusedMonster = false;
@Required
private boolean scenarioNumberInput = false;
@Required
private boolean scenarioRooms = true;
Expand Down Expand Up @@ -1212,6 +1214,24 @@ public void setRandomStandees(boolean randomStandees) {
this.randomStandees = randomStandees;
}

/**
* Checks if is remove unused monster.
*
* @return true, if is remove unused monster
*/
public boolean isremoveUnusedMonster() {
return removeUnusedMonster;
}

/**
* Sets the remove unused monster.
*
* @param removeUnusedMonster the new remove unused monster
*/
public void setRemoveUnusedMonster(boolean removeUnusedMonster) {
this.removeUnusedMonster = removeUnusedMonster;
}

/**
* Checks if is scenario number input.
*
Expand Down

0 comments on commit 2618c82

Please sign in to comment.