We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50c5a63 commit 89fff06Copy full SHA for 89fff06
1 file changed
src/packets.c
@@ -1367,7 +1367,7 @@ void process_players_creature_control_packet_control(long idx)
1367
cctng->move_angle_z = new_vertical;
1368
ccctrl->roll = new_roll;
1369
}
1370
- if ((!creature_is_dying(cctng)) && (cctng->active_state != CrSt_CreatureUnconscious))
+ if ((thing_is_creature(cctng) && !creature_is_dying(cctng)) && (cctng->active_state != CrSt_CreatureUnconscious))
1371
{
1372
TbBool allowed;
1373
if ((pckt->control_flags & PCtr_LBtnRelease) != 0)
0 commit comments