From ec2d734acda3b9ee8416db583a048fc09e612423 Mon Sep 17 00:00:00 2001 From: Jeffrey 'Sigurd' Westcoat Date: Sat, 8 Apr 2017 19:05:49 -0400 Subject: [PATCH] WML: Add base_income key to [store_side] (#976) --- changelog | 2 ++ data/lua/wml-tags.lua | 1 + 2 files changed, 3 insertions(+) diff --git a/changelog b/changelog index 8c8fc2e7274..890addcdf2f 100644 --- a/changelog +++ b/changelog @@ -6,6 +6,8 @@ Version 1.13.7+dev: * User Interface: * Updated Attack Predictions dialog to GUI2. * Fixed file path being truncated on the wrong side in the File Browser. + * WML Engine: + * Add base_income key to [store_side] Version 1.13.7: * AI: diff --git a/data/lua/wml-tags.lua b/data/lua/wml-tags.lua index 3c3758e70f6..4a05edd795a 100644 --- a/data/lua/wml-tags.lua +++ b/data/lua/wml-tags.lua @@ -733,6 +733,7 @@ function wml_actions.store_side(cfg) -- set values not properly handled by the __cfg container.income = t.total_income container.net_income = t.net_income + container.base_income = t.base_income container.expenses = t.expenses container.total_upkeep = t.total_upkeep container.num_units = t.num_units