mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
Fixed issue with itemFitsInto1By2Slot()
classifying all items as unsuitable for a 1x2 slot
This commit is contained in:
parent
2ea6b658fd
commit
d92ec20e9c
@ -173,7 +173,7 @@ export class PMCLootGenerator
|
|||||||
*/
|
*/
|
||||||
protected itemFitsInto1By2Slot(item: ITemplateItem): boolean
|
protected itemFitsInto1By2Slot(item: ITemplateItem): boolean
|
||||||
{
|
{
|
||||||
switch (`{${item._props.Width}x${item._props.Height}}`)
|
switch (`${item._props.Width}x${item._props.Height}`)
|
||||||
{
|
{
|
||||||
case "1x1":
|
case "1x1":
|
||||||
case "1x2":
|
case "1x2":
|
||||||
|
Loading…
x
Reference in New Issue
Block a user