Fix Capitalization of 2 moves' back code
This commit is contained in:
parent
58fd846cc9
commit
423375f4a6
|
@ -30914,7 +30914,7 @@
|
||||||
<Compile Include="Pokemon\Attacks\Poison\AcidSpray.vb" />
|
<Compile Include="Pokemon\Attacks\Poison\AcidSpray.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Poison\ClearSmog.vb" />
|
<Compile Include="Pokemon\Attacks\Poison\ClearSmog.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Poison\Coil.vb" />
|
<Compile Include="Pokemon\Attacks\Poison\Coil.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Poison\Crosspoison.vb" />
|
<Compile Include="Pokemon\Attacks\Poison\CrossPoison.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Poison\GunkShot.vb" />
|
<Compile Include="Pokemon\Attacks\Poison\GunkShot.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Poison\PoisonFang.vb" />
|
<Compile Include="Pokemon\Attacks\Poison\PoisonFang.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Poison\PoisonGas.vb" />
|
<Compile Include="Pokemon\Attacks\Poison\PoisonGas.vb" />
|
||||||
|
@ -30984,7 +30984,7 @@
|
||||||
<Compile Include="Pokemon\Attacks\Rock\Rollout.vb" />
|
<Compile Include="Pokemon\Attacks\Rock\Rollout.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Rock\Sandstorm.vb" />
|
<Compile Include="Pokemon\Attacks\Rock\Sandstorm.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Rock\SmackDown.vb" />
|
<Compile Include="Pokemon\Attacks\Rock\SmackDown.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Rock\Stealthrock.vb" />
|
<Compile Include="Pokemon\Attacks\Rock\StealthRock.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Rock\StoneEdge.vb" />
|
<Compile Include="Pokemon\Attacks\Rock\StoneEdge.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Special\ConfusionAttack.vb" />
|
<Compile Include="Pokemon\Attacks\Special\ConfusionAttack.vb" />
|
||||||
<Compile Include="Pokemon\Attacks\Steel\Autotomize.vb" />
|
<Compile Include="Pokemon\Attacks\Steel\Autotomize.vb" />
|
||||||
|
|
|
@ -1123,7 +1123,7 @@
|
||||||
Case 439
|
Case 439
|
||||||
returnMove = New Moves.Rock.RockWrecker()
|
returnMove = New Moves.Rock.RockWrecker()
|
||||||
Case 440
|
Case 440
|
||||||
returnMove = New Moves.Poison.Crosspoison()
|
returnMove = New Moves.Poison.CrossPoison()
|
||||||
Case 441
|
Case 441
|
||||||
returnMove = New Moves.Poison.GunkShot()
|
returnMove = New Moves.Poison.GunkShot()
|
||||||
Case 442
|
Case 442
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Namespace BattleSystem.Moves.Poison
|
Namespace BattleSystem.Moves.Poison
|
||||||
|
|
||||||
Public Class Crosspoison
|
Public Class CrossPoison
|
||||||
|
|
||||||
Inherits Attack
|
Inherits Attack
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue