Fix crash

This commit is contained in:
tobspr 2020-06-22 15:26:49 +02:00
parent d5b9a5b562
commit 0b95f3b208
2 changed files with 5 additions and 1 deletions

View File

@ -477,6 +477,10 @@
.sidelinks > a {
background-color: darken($darkModeGameBackground, 10);
color: #eee;
&:hover {
background-color: darken($darkModeGameBackground, 8);
}
}
.author {

View File

@ -246,6 +246,6 @@ export class HUDShop extends BaseHUDPart {
tryUnlockNextTier(upgradeId) {
// Nothing
this.root.hubGoals.tryUnlockUgprade(upgradeId);
this.root.hubGoals.tryUnlockUpgrade(upgradeId);
}
}