From 2b918ed029567fd182c15729cce1108d63383dc8 Mon Sep 17 00:00:00 2001 From: Tailszefox Date: Tue, 28 Jan 2014 18:55:04 +0100 Subject: [PATCH] Fixed small bug when swapping shaded Vinyl --- index.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index baa3ec5..c109c87 100644 --- a/index.php +++ b/index.php @@ -208,7 +208,7 @@ else { $("#to").find("option").removeAttr("disabled"); $("#from").find("option").removeAttr("disabled"); - + var nbPonies = $("#from option").size(); if(which == 0) @@ -320,10 +320,12 @@ else if(current == "vinyl") { $("#from option[value='vinyl']").val("vinyl2"); + $("#to option[value='vinyl']").val("vinyl2"); } else { - $("#from option[value='vinyl2']").val("vinyl"); + $("#from option[value='vinyl2']").val("vinyl"); + $("#to option[value='vinyl']").val("vinyl2"); } getNewFusion();