--- a/share/hedgewars/Data/Scripts/Multiplayer/Construction_Mode.lua Mon Nov 26 18:03:39 2018 +0100
+++ b/share/hedgewars/Data/Scripts/Multiplayer/Construction_Mode.lua Mon Nov 26 19:10:08 2018 +0100
@@ -297,8 +297,14 @@
function DrawClanPowerTag()
local zoomL = 1.1
- local xOffset = 45
- local yOffset = 70
+ local xOffset, yOffset
+ if INTERFACE == "touch" then
+ xOffset = 126
+ yOffset = ScreenHeight - 32
+ else
+ xOffset = 45
+ yOffset = 70
+ end
local tValue = clanPower[GetHogClan(CurrentHedgehog)]
local tCol = GetClanColor(GetHogClan(CurrentHedgehog))