0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 07:30:42 -05:00

Added missing favoriteItems array to profile templates + extra optional param to body part object

This commit is contained in:
Dev 2024-09-02 20:40:15 +01:00
parent 8aafd0e9b1
commit 7de0a112dc
2 changed files with 15 additions and 2 deletions

View File

@ -440,6 +440,7 @@
"Inventory": {
"equipment": "5fe4977574f15b4ad31b6631",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {},
"items": [{
"_id": "5fe4977574f15b4ad31b6631",
@ -3140,6 +3141,7 @@
"Inventory": {
"equipment": "5fe49cdfa19cac3fa905407f",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {},
"items": [{
"_id": "5fe49cdfa19cac3fa905407f",
@ -6021,6 +6023,7 @@
"Inventory": {
"equipment": "5fe4a9285a72d07b66302933",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {},
"items": [{
"_id": "5fe4a9285a72d07b66302933",
@ -9280,6 +9283,7 @@
"Inventory": {
"equipment": "5fe4a9fcf5aec236ec38363c",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {},
"items": [{
"_id": "5fe4a9fcf5aec236ec38363c",
@ -12629,6 +12633,7 @@
"Inventory": {
"equipment": "5fe4a66e40ca750fd72b5886",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {},
"items": [{
"_id": "5fe4a66e40ca750fd72b5886",
@ -16358,6 +16363,7 @@
"Inventory": {
"equipment": "5fe4ab2240ca750fd72bbd3a",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {},
"items": [{
"_id": "5fe4ab2240ca750fd72bbd3a",
@ -24006,8 +24012,8 @@
"Inventory": {
"equipment": "6613e1cf291a2e76b00269a8",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {},
"favoriteItems": [],
"items": [{
"_id": "6613e1cf291a2e76b00269a8",
"_tpl": "55d7217a4bdc2d86028b456d"
@ -32500,10 +32506,10 @@
"Inventory": {
"equipment": "664115f68b8ae858750609b3",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {
"27": "66c903b7cbd137db330413a2"
},
"favoriteItems": [],
"items": [{
"_id": "664115f68b8ae858750609b3",
"_tpl": "55d7217a4bdc2d86028b456d"
@ -41049,6 +41055,7 @@
"Inventory": {
"equipment": "5fe49444ae6628187a2e77b8",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {
"16": "5d494a295b56502f18c98a08",
"24": "63db64cbf9963741dc0d741f",
@ -44177,6 +44184,7 @@
"Inventory": {
"equipment": "5fe49444ae6628187a2e77b8",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {
"16": "5d494a295b56502f18c98a08",
"24": "63db64cbf9963741dc0d741f",
@ -47297,6 +47305,7 @@
"Inventory": {
"equipment": "5fe49444ae6628187a2e77b8",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {},
"items": [{
"_id": "5fe49444ae6628187a2e77b8",
@ -50699,6 +50708,7 @@
"Inventory": {
"equipment": "5fe49444ae6628187a2e77b8",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {},
"items": [{
"_id": "5fe49444ae6628187a2e77b8",
@ -52077,6 +52087,7 @@
"Inventory": {
"equipment": "5fe49444ae6628187a2e77b8",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {},
"items": [{
"_id": "5fe49444ae6628187a2e77b8",
@ -53049,6 +53060,7 @@
"Inventory": {
"equipment": "5fe49444ae6628187a2e77b8",
"fastPanel": {},
"favoriteItems": [],
"hideoutAreaStashes": {},
"items": [{
"_id": "5fe49444ae6628187a2e77b8",

View File

@ -149,6 +149,7 @@ export interface BodyPartHealth {
}
export interface BodyPartEffectProperties {
ExtraData?: any;
Time: number;
}