[BUG] iscrouching is always false

Started by EK.IceFlake, Jul 07, 2017, 05:21 AM

Previous topic - Next topic

EK.IceFlake

I was reimplementing slide but a problem occurred. The iscrouching parameter is always false.

SqCore.On().PlayerCrouching.Connect(function (player, iscrouching)
{
    print(iscrouching);
});

[USR] false

Luckily I can use player.Crouched for now.

.

#1
This is most-likely not a plugin bug, but rather a server bug. All I'm doing is forwarding whatever the server sends. Therefore, the server is the one that always sends the value `false`.
.