0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 09:50:43 -05:00

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;
}
/**