From 619f15944b896cd8fa27b7563c8de69203d9bb13 Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Tue, 16 Jun 2026 23:12:31 +0100 Subject: [PATCH] fix these names --- src/shapes/AntiGravity.hx | 2 +- src/shapes/TimeTravel.hx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shapes/AntiGravity.hx b/src/shapes/AntiGravity.hx index 5844f17b..6f074149 100644 --- a/src/shapes/AntiGravity.hx +++ b/src/shapes/AntiGravity.hx @@ -15,7 +15,7 @@ class AntiGravity extends PowerUp { this.isCollideable = false; this.isTSStatic = false; this.identifier = "AntiGravity"; - this.pickUpName = "Gravity Defier"; + this.pickUpName = "Gravity Modifier"; this.autoUse = true; if (norespawn) this.cooldownDuration = Math.NEGATIVE_INFINITY; diff --git a/src/shapes/TimeTravel.hx b/src/shapes/TimeTravel.hx index f4bbc7fb..283bdfff 100644 --- a/src/shapes/TimeTravel.hx +++ b/src/shapes/TimeTravel.hx @@ -23,7 +23,7 @@ class TimeTravel extends PowerUp { this.timeBonus = -MisParser.parseNumber(element.timepenalty) / 1000; } - this.pickUpName = '${this.timeBonus} second Time ${this.timeBonus >= 0 ? 'Modifier' : 'Penalty'}'; + this.pickUpName = '${this.timeBonus} second Time Travel'; this.cooldownDuration = 1e8; this.useInstancing = true; this.autoUse = true;