mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-15 16:34:56 +01:00
Use getOpenStateMap() in PlayerOpenStateManager
This commit is contained in:
@@ -33,7 +33,7 @@ public class PlayerOpenStateManager extends BasePlayerDataManager {
|
|||||||
public static final Set<OpenState> DEV_OPEN_STATES = Stream.of(OpenState.values())
|
public static final Set<OpenState> DEV_OPEN_STATES = Stream.of(OpenState.values())
|
||||||
.filter(s -> s != OpenState.OPEN_STATE_NONE && s.getUnlockLevel() <= 1)
|
.filter(s -> s != OpenState.OPEN_STATE_NONE && s.getUnlockLevel() <= 1)
|
||||||
.collect(Collectors.toSet());
|
.collect(Collectors.toSet());
|
||||||
|
|
||||||
public PlayerOpenStateManager(Player player) {
|
public PlayerOpenStateManager(Player player) {
|
||||||
super(player);
|
super(player);
|
||||||
}
|
}
|
||||||
@@ -44,11 +44,11 @@ public class PlayerOpenStateManager extends BasePlayerDataManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public int getOpenState(OpenState openState) {
|
public int getOpenState(OpenState openState) {
|
||||||
return this.map.getOrDefault(openState.getValue(), 0);
|
return getOpenStateMap().getOrDefault(openState.getValue(), 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setOpenState(OpenState openState, Integer value) {
|
public void setOpenState(OpenState openState, Integer value) {
|
||||||
Integer previousValue = this.map.getOrDefault(openState.getValue(),0);
|
Integer previousValue = getOpenStateMap().getOrDefault(openState.getValue(),0);
|
||||||
if (value != previousValue) {
|
if (value != previousValue) {
|
||||||
this.map.put(openState.getValue(), value);
|
this.map.put(openState.getValue(), value);
|
||||||
player.getSession().send(new PacketOpenStateChangeNotify(openState.getValue(),value));
|
player.getSession().send(new PacketOpenStateChangeNotify(openState.getValue(),value));
|
||||||
|
|||||||
Reference in New Issue
Block a user