From 3549c6d7e4f305f636aa33594de6c50514b3cfa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20N=27gadi?= Date: Thu, 24 Aug 2017 09:15:13 +0200 Subject: [PATCH] Fix wrong variable name --- client/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.lua b/client/main.lua index 5a57ff0e..e27fdcae 100644 --- a/client/main.lua +++ b/client/main.lua @@ -293,7 +293,7 @@ function OpenCustomersMenu() cols = { customers[i].name, customers[i].propertyName, - (customers[i].rented and _U('rent') or _U('sell')), + (customers[i].propertyRented and _U('rent') or _U('sell')), _U('contract') } })