getItemPrice() if static price is 0 and dynamic price is missing, return 0 instead of undefined

This commit is contained in:
Dev 2023-11-07 21:13:41 +00:00
parent 1f622a0760
commit 7941675102

View File

@ -117,6 +117,8 @@ class ItemHelper
{
return dynamicPrice;
}
return 0;
}
/**