Check for custom realization sound when using effects list

This commit is contained in:
scatterflower 2020-08-16 04:03:56 -05:00
parent ec1c95bdb3
commit 002086343a

View File

@ -908,6 +908,11 @@ QString AOApplication::get_effect_sound(QString fx_name, QString p_char)
f_result = read_design_ini(fx_name, default_path);
}
}
if(fx_name == "realization"){
f_result = get_custom_realization(p_char);
}
return f_result;
}