mirror of
https://github.com/Tailszefox/Pony-Fusion.git
synced 2024-11-23 14:27:59 +01:00
Fixed small bug when swapping shaded Vinyl
This commit is contained in:
parent
180a41ce16
commit
2b918ed029
1 changed files with 4 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue