Fix ReferenceError in gen3 Bide

The gen3 moves.js was throwing an exception on load because it
calls a function which does not exist. This commit does not properly
fix Bide, but it does fix the ReferenceError exception.
This commit is contained in:
Cathy J. Fitzpatrick 2013-02-14 12:31:58 -07:00
parent 6506f492f9
commit 19e0a5ad5b

View File

@ -111,7 +111,7 @@ exports.BattleMovedex = {
shortDesc: "Waits 2-3 turns; deals double the damage taken.",
priority: 0,
effect: {
duration: 2+random(),
duration: 2, // TODO: Use correct duration.
onLockMove: 'bide',
onStart: function(pokemon) {
this.effectData.totalDamage = 0;