mirror of
https://github.com/RandomityGuy/MBHaxe.git
synced 2026-06-24 01:02:55 +00:00
fix these names
This commit is contained in:
parent
6c891e1135
commit
619f15944b
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue