diff --git a/fx/bg-gen1.png b/fx/bg-gen1.png index 6c79e35f3..b2d65fa71 100644 Binary files a/fx/bg-gen1.png and b/fx/bg-gen1.png differ diff --git a/fx/bg-gen2.png b/fx/bg-gen2.png new file mode 100644 index 000000000..87a7dd403 Binary files /dev/null and b/fx/bg-gen2.png differ diff --git a/js/battle.js b/js/battle.js index 6af8a4147..bd632e7f5 100644 --- a/js/battle.js +++ b/js/battle.js @@ -2247,7 +2247,8 @@ var Battle = (function () { }; Battle.prototype.updateGen = function () { if (!Tools.prefs('nopastgens')) { - if (this.gen <= 2) this.backdropImage = 'bg-gen1.png'; + if (this.gen <= 1) this.backdropImage = 'bg-gen1.png'; + else if (this.gen <= 2) this.backdropImage = 'bg-gen2.png'; else if (this.gen <= 3) this.backdropImage = BattleBackdropsThree[Math.floor(Math.random() * BattleBackdropsThree.length)]; else if (this.gen <= 4) this.backdropImage = BattleBackdropsFour[Math.floor(Math.random() * BattleBackdropsFour.length)]; }