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;