Browse Source

fix incorrect golem removal

pull/2626/head
qndel 5 years ago committed by Anders Jenbo
parent
commit
6ce32f8d6a
  1. 2
      Source/msg.cpp

2
Source/msg.cpp

@ -1279,7 +1279,7 @@ DWORD OnKillGolem(TCmd *pCmd, int pnum)
else if (pnum != MyPlayerId) {
if (currlevel == p->wParam1)
M_SyncStartKill(pnum, { p->x, p->y }, pnum);
delta_kill_monster(pnum, { p->x, p->y }, Players[pnum].plrlevel);
delta_kill_monster(pnum, { p->x, p->y }, p->wParam1);
}
return sizeof(*p);

Loading…
Cancel
Save