fix these names

This commit is contained in:
RandomityGuy 2026-06-16 23:12:31 +01:00
parent 6c891e1135
commit 619f15944b
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;