First bugfix of the year, actually removing free move from status.

This commit is contained in:
Sergiotarxz 2024-01-01 00:53:37 +01:00
parent ac21ac1387
commit 7994119d66
2 changed files with 3 additions and 3 deletions

View File

@ -187,8 +187,8 @@ export default class Conquer {
this.addState(MapState.FREE_ROTATION);
});
selfPlayerUI.on('disable-explorer-mode', () => {
this.addState(MapState.FREE_MOVE);
this.addState(MapState.FREE_ROTATION);
this.removeState(MapState.FREE_MOVE);
this.removeState(MapState.FREE_ROTATION);
});
selfPlayerUI.on('createNodeStart', () => {
this.addState(MapState.CREATE_NODE)

File diff suppressed because one or more lines are too long