Skip to content

Commit 73823ab

Browse files
committed
Fix missed instances of Snowscape rename
1 parent 70def01 commit 73823ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

play.pokemonshowdown.com/src/battle-tooltips.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1731,7 +1731,7 @@ export class BattleTooltips {
17311731
}
17321732
if (move.id === 'blizzard' && this.battle.gen >= 4) {
17331733
value.weatherModify(0, 'Hail');
1734-
value.weatherModify(0, 'Snow');
1734+
value.weatherModify(0, 'Snowscape');
17351735
}
17361736
if (['hurricane', 'thunder', 'bleakwindstorm', 'wildboltstorm', 'sandsearstorm'].includes(move.id)) {
17371737
value.weatherModify(0, 'Rain Dance');

play.pokemonshowdown.com/style/battle.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ License: GPLv2
441441
background: #E6E0AC url(../fx/weather-sandstorm.png) no-repeat scroll left top;
442442
color: #554433;
443443
}
444-
.snowweather,
444+
.snowscapeweather,
445445
.hailweather {
446446
background: #AADDEE url(../fx/weather-hail.png) no-repeat scroll left top;
447447
color: #114455;

0 commit comments

Comments
 (0)