MCPcopy Create free account
hub / github.com/diasurgical/devilution / NetSendCmdDelItem

Function NetSendCmdDelItem

Source/msg.cpp:901–911  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

899}
900
901void NetSendCmdDelItem(BOOL bHiPri, BYTE bLoc)
902{
903 TCmdDelItem cmd;
904
905 cmd.bLoc = bLoc;
906 cmd.bCmd = CMD_DELPLRITEMS;
907 if (bHiPri)
908 NetSendHiPri((BYTE *)&cmd, sizeof(cmd));
909 else
910 NetSendLoPri((BYTE *)&cmd, sizeof(cmd));
911}
912
913void NetSendCmdDItem(BOOL bHiPri, int ii)
914{

Callers 5

CheckInvPasteFunction · 0.85
CheckInvCutFunction · 0.85
WeaponDurFunction · 0.85
ShieldDurFunction · 0.85
ArmorDurFunction · 0.85

Calls 2

NetSendHiPriFunction · 0.85
NetSendLoPriFunction · 0.85

Tested by

no test coverage detected