You are welcome. Thanks for this great plugin.
For a quick fix, until @technofreaky has resolved this, insert this into your functions.php:
function _decimal_fix_patch( $price ) {
return str_replace(“,”,”.”,$price);
}
add_filter(“woocommerce_role_based_product_price_value”, “_decimal_fix_patch”, 0, 1);