fix
This commit is contained in:
@@ -106,7 +106,7 @@ namespace ReallifeGamemode.Server.Commands
|
|||||||
[Command("hup")]
|
[Command("hup")]
|
||||||
public void CmdAnim(Player player)
|
public void CmdAnim(Player player)
|
||||||
{
|
{
|
||||||
if (player.HasAnimation("hup")) { player.StopAnimation(); }
|
if (player.HasAnimation("hup")) { player.ClearAnimation(); }
|
||||||
if (player.HasAnimation())
|
if (player.HasAnimation())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|||||||
@@ -969,7 +969,7 @@ namespace ReallifeGamemode.Server.Events
|
|||||||
[RemoteEvent("keyPress:ControllH")]
|
[RemoteEvent("keyPress:ControllH")]
|
||||||
public void KeyPressControllH(Player player)
|
public void KeyPressControllH(Player player)
|
||||||
{
|
{
|
||||||
if (player.HasAnimation("hup")) { player.StopAnimation(); }
|
if (player.HasAnimation("hup")) { player.ClearAnimation(); }
|
||||||
if (player.HasAnimation())
|
if (player.HasAnimation())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user