The statues will now automatically regen their HP volume over time.

Max is currently set to 85000 for everyone. Will update after implementing statue levels.
This commit is contained in:
gentlespoon
2022-05-06 02:23:10 -07:00
committed by Melledy
parent 098cf372c9
commit 0102a3ce1e
3 changed files with 66 additions and 25 deletions

View File

@@ -130,6 +130,8 @@ public class Player {
private MapMarksManager mapMarksManager;
@Transient private MovementManager movementManager;
private long springLastUsed;
@Deprecated
@SuppressWarnings({"rawtypes", "unchecked"}) // Morphia only!
@@ -535,6 +537,14 @@ public class Player {
}
}
public long getSpringLastUsed() {
return springLastUsed;
}
public void setSpringLastUsed(long val) {
springLastUsed = val;
}
public SceneLoadState getSceneLoadState() {
return sceneState;
}