From e69be59f85dd641dcb86511a7916af85201fcb52 Mon Sep 17 00:00:00 2001 From: mattsc Date: Wed, 15 Oct 2014 06:33:30 -0700 Subject: [PATCH] Remove trailing whitespaces --- data/campaigns/Under_the_Burning_Suns/_main.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/campaigns/Under_the_Burning_Suns/_main.cfg b/data/campaigns/Under_the_Burning_Suns/_main.cfg index cac3cd08baaa..37192b69148e 100644 --- a/data/campaigns/Under_the_Burning_Suns/_main.cfg +++ b/data/campaigns/Under_the_Burning_Suns/_main.cfg @@ -170,18 +170,18 @@ code=<< local _ = wesnoth.textdomain "wesnoth-utbs" local old_unit_status = wesnoth.theme_items.unit_status - + function wesnoth.theme_items.unit_status() local u = wesnoth.get_displayed_unit() if not u then return {} end local s = old_unit_status() - + if u.status.stunned then table.insert(s, { "element", { image = "misc/stunned-status-icon.png", tooltip = _"stunned: This unit is stunned. It cannot enforce its Zone of Control." } } ) end - + return s end >>