From 2be2a1ee0309657f3cfc5e899fa176d4398387d6 Mon Sep 17 00:00:00 2001 From: CyndaquilDAC <65635932+CyndaquilDAC@users.noreply.github.com> Date: Wed, 28 Apr 2021 09:58:11 -0500 Subject: [PATCH] fix --- source/Options.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Options.hx b/source/Options.hx index 46469ac..3d9c2cd 100644 --- a/source/Options.hx +++ b/source/Options.hx @@ -198,7 +198,7 @@ class DistractionsAndEffectsOption extends Option private override function updateDisplay():String { - return "Distractions and Effects " + (!FlxG.save.data.distractions ? "off" : "on"); + return "Distractions " + (!FlxG.save.data.distractions ? "off" : "on"); } }