1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-13 13:04:03 +00:00

Change uses of getSetting() to getAllSettings().

This commit is contained in:
hexagonhexagon 2020-06-12 12:52:53 -04:00
parent f252d0088c
commit db023e45ac

View File

@ -131,12 +131,12 @@ export class HUDBuildingPlacer extends BaseHUDPart {
if (
button === enumMouseButton.right &&
(!this.currentMetaBuilding.get() ||
!this.root.app.settings.getSetting("abortPlacementOnDeletion"))
!this.root.app.settings.getAllSettings().abortPlacementOnDeletion)
) {
this.currentlyDragging = true;
this.currentlyDeleting = true;
this.lastDragTile = this.root.camera.screenToWorld(pos).toTileSpace();
if (this.root.app.settings.getSetting("abortPlacementOnDeletion")) {
if (this.root.app.settings.getAllSettings().abortPlacementOnDeletion) {
this.currentMetaBuilding.set(null);
}
return STOP_PROPAGATION;
@ -443,7 +443,7 @@ export class HUDBuildingPlacer extends BaseHUDPart {
if (cancelAction) {
if (
this.currentMetaBuilding.get() &&
this.root.app.settings.getSetting("abortPlacementOnDeletion")
this.root.app.settings.getAllSettings().abortPlacementOnDeletion
) {
this.currentMetaBuilding.set(null);
} else {