From a830aae9aea60f77b513cdc19cefbf4d474a4c59 Mon Sep 17 00:00:00 2001 From: wcko87 Date: Fri, 12 May 2017 19:53:19 +0800 Subject: [PATCH] Rename nDeaths -> deaths and nRestarts -> restarts --- rabi_splitter_WPF/VariableExportConfig.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rabi_splitter_WPF/VariableExportConfig.cs b/rabi_splitter_WPF/VariableExportConfig.cs index cfcf58f..db73724 100644 --- a/rabi_splitter_WPF/VariableExportConfig.cs +++ b/rabi_splitter_WPF/VariableExportConfig.cs @@ -95,13 +95,13 @@ namespace rabi_splitter_WPF ), ExportVariable ( - handle: "nDeaths", + handle: "deaths", displayName: "Deaths", tracker: () => inGameState.nDeaths ), ExportVariable ( - handle: "nRestarts", + handle: "restarts", displayName: "Restarts", tracker: () => inGameState.nRestarts ),