Skip to content

Commit

Permalink
Merge pull request #222 from DragonSlayer62/srtocking-ids
Browse files Browse the repository at this point in the history
Stocking ids Missing
  • Loading branch information
Xoduz authored Nov 11, 2023
2 parents 8c3b51b + 5af7545 commit f97faed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
5 changes: 4 additions & 1 deletion source/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
10/11/2023 - Dragon Slayer
Added IDs for stocking items to cItem::GetPackType() in items.cpp, so they can be used as containers

29/10/2023 - Dragon Slayer, Xuri
Added DFN entries for first aid belt. (dfn item/gear/clothing/ej_clothing)
Added First Aid Belt ID to backpack type. (cpp items)
Added bandage healing bonus to healing. (js healing)
Added JS script bandagehealingbonus (js items/equip_effect/bandagehealingbonus)

28/10/2023 - Dragon Slayer (0.99.6a)
Added DFN entries for hallow pumpkins, jack o lanterns and halloween decorations. (dfn item/misc/halloween)
Added DFN entrie for killerpumpkin in daemons.dfn. (dfn daemons)
Expand Down
6 changes: 6 additions & 0 deletions source/items.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1519,6 +1519,12 @@ PackTypes cItem::GetPackType( CItem *i )
packType = PT_PACK2;
}
break;
case 0x2bd9:
case 0x2BDA:
case 0x2BDB:
case 0x2BDC:
packType = PT_STOCKING;
break;
case 0x232A: // giftbox
case 0x232B: // giftbox
packType = PT_GIFTBOX1;
Expand Down

0 comments on commit f97faed

Please sign in to comment.