Prevent c-gear on non-gen5

Closes #433
This commit is contained in:
Kurt 2016-11-22 18:40:41 -08:00
parent d4ab463f6c
commit 29a71a2a20

View File

@ -3929,6 +3929,8 @@ private void B_LinkInfo_Click(object sender, EventArgs e)
}
private void B_CGearSkin_Click(object sender, EventArgs e)
{
if (SAV.Generation != 5)
return; // can never be too safe
new SAV_CGearSkin().ShowDialog();
}
private void B_JPEG_Click(object sender, EventArgs e)