From a6a3847107391e3c0b290fd8176445d4f08df181 Mon Sep 17 00:00:00 2001 From: Stubenhocker1399 Date: Wed, 2 Oct 2019 12:28:20 +0200 Subject: [PATCH] Fix missing house tools action buttons --- src/ts/client/buttonActions.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ts/client/buttonActions.ts b/src/ts/client/buttonActions.ts index 360f0f3..1f899b6 100644 --- a/src/ts/client/buttonActions.ts +++ b/src/ts/client/buttonActions.ts @@ -118,6 +118,10 @@ const actionActions = [ actionButtonAction('drop', 'Drop item', Action.Drop), actionButtonAction('drop-toy', 'Drop toy', Action.DropToy), actionButtonAction('magic', 'Magic', Action.Magic), + actionButtonAction('switch-tool', 'Switch tool', Action.SwitchTool), + actionButtonAction('switch-entity', 'Switch item to place'), + actionButtonAction('switch-entity-rev', 'Switch item to place (reverse)'), + actionButtonAction('switch-tile', 'Switch tile to place'), actionButtonAction('kiss', 'Kiss', Action.Kiss), ];