From b313ab9db0ac10e6816aa15cc9f66c0f6d28d925 Mon Sep 17 00:00:00 2001 From: CG-Tespy Date: Wed, 12 Feb 2020 06:37:57 -0500 Subject: [PATCH] Applied requested changed to GetVariables method --- Assets/Fungus/Scripts/Components/Flowchart.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Fungus/Scripts/Components/Flowchart.cs b/Assets/Fungus/Scripts/Components/Flowchart.cs index ae8316d0..2b91a972 100644 --- a/Assets/Fungus/Scripts/Components/Flowchart.cs +++ b/Assets/Fungus/Scripts/Components/Flowchart.cs @@ -803,7 +803,7 @@ namespace Fungus /// /// Returns a list of variables matching the specified type. /// - public IList GetVariables() where T: Variable + public virtual List GetVariables() where T: Variable { var varsFound = new List();