Small fix
This commit is contained in:
parent
973f6873e4
commit
7123bea8e5
@ -264,7 +264,8 @@ namespace RageCoop.Client
|
|||||||
MainChat.Focused = true;
|
MainChat.Focused = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (Game.IsEnabledControlJustPressed(GTA.Control.MultiplayerInfo))
|
else if (MainChat.Focused) { return; }
|
||||||
|
else if (Game.IsControlJustPressed(GTA.Control.MultiplayerInfo))
|
||||||
{
|
{
|
||||||
if (Networking.IsOnServer)
|
if (Networking.IsOnServer)
|
||||||
{
|
{
|
||||||
@ -272,7 +273,7 @@ namespace RageCoop.Client
|
|||||||
PlayerList.Pressed = (currentTimestamp - PlayerList.Pressed) < 5000 ? (currentTimestamp - 6000) : currentTimestamp;
|
PlayerList.Pressed = (currentTimestamp - PlayerList.Pressed) < 5000 ? (currentTimestamp - 6000) : currentTimestamp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (Game.IsEnabledControlJustPressed(GTA.Control.VehicleExit))
|
else if (Game.IsControlJustPressed(GTA.Control.VehicleExit))
|
||||||
{
|
{
|
||||||
if (P.IsInVehicle())
|
if (P.IsInVehicle())
|
||||||
{
|
{
|
||||||
@ -291,7 +292,7 @@ namespace RageCoop.Client
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (e.KeyCode==Settings.PassengerKey && !MainChat.Focused)
|
else if (e.KeyCode==Settings.PassengerKey)
|
||||||
{
|
{
|
||||||
var P = Game.Player.Character;
|
var P = Game.Player.Character;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user