Skip to content

Commit

Permalink
JS側のシールドコア対応
Browse files Browse the repository at this point in the history
  • Loading branch information
ndekopon committed Feb 18, 2024
1 parent 010d553 commit 67c9bdf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion htdocs/apex-webapi.js
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,7 @@ export class ApexWebAPI extends EventTarget {
static WEBAPI_ITEM_MOBILERESPAWNBEACON = 0x60;
static WEBAPI_ITEM_HEATSHIELD = 0x61;
static WEBAPI_ITEM_EVACTOWER = 0x62;
static WEBAPI_ITEM_SHIELDCCORE = 0x70;

#uri;
#socket;
Expand Down Expand Up @@ -1162,7 +1163,8 @@ export class ApexWebAPI extends EventTarget {
"knockdownshield": 1,
"mobilerespawnbeacon": 0,
"heatshield": 0,
"evactower": 0
"evactower": 0,
"shieldcore": 1,
},
perks: {},
kills: 0,
Expand Down Expand Up @@ -1267,6 +1269,8 @@ export class ApexWebAPI extends EventTarget {
return "heatshield";
case ApexWebAPI.WEBAPI_ITEM_EVACTOWER:
return "evactower";
case ApexWebAPI.WEBAPI_ITEM_SHIELDCCORE:
return "shieldcore";
}
return "";
}
Expand Down

0 comments on commit 67c9bdf

Please sign in to comment.