blah
This commit is contained in:
@ -46,10 +46,7 @@ namespace RageCoop.Client
|
|||||||
/// Don't use it!
|
/// Don't use it!
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Main()
|
public Main()
|
||||||
{
|
{Game.Player.Character.Task.LeaveVehicle()
|
||||||
#if DEBUG_HIGH_PING
|
|
||||||
Networking.SimulatedLatency=0.3f;
|
|
||||||
#endif
|
|
||||||
Worker = new Worker("RageCoop.Client.Main.Worker", Logger);
|
Worker = new Worker("RageCoop.Client.Main.Worker", Logger);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -16,7 +16,7 @@ using System.Resources;
|
|||||||
|
|
||||||
|
|
||||||
// Version informationr(
|
// Version informationr(
|
||||||
[assembly: AssemblyVersion("1.5.3.144")]
|
[assembly: AssemblyVersion("1.5.3.146")]
|
||||||
[assembly: AssemblyFileVersion("1.5.3.144")]
|
[assembly: AssemblyFileVersion("1.5.3.146")]
|
||||||
[assembly: NeutralResourcesLanguageAttribute( "en-US" )]
|
[assembly: NeutralResourcesLanguageAttribute( "en-US" )]
|
||||||
|
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
<OutPutPath>..\bin\Debug\Client</OutPutPath>
|
<OutPutPath>..\bin\Debug\Client</OutPutPath>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
<DefineConstants>DEBUG</DefineConstants>
|
<DefineConstants>DEBUG</DefineConstants>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
||||||
<OutPutPath>..\bin\Release\Client</OutPutPath>
|
<OutPutPath>..\bin\Release\Client</OutPutPath>
|
||||||
|
@ -136,7 +136,7 @@ namespace RageCoop.Client
|
|||||||
foreach (Vehicle veh in World.GetAllVehicles())
|
foreach (Vehicle veh in World.GetAllVehicles())
|
||||||
{
|
{
|
||||||
SyncedVehicle v = veh.GetSyncEntity();
|
SyncedVehicle v = veh.GetSyncEntity();
|
||||||
if (v.MainVehicle == Game.Player.LastVehicle)
|
if (v.MainVehicle == Game.Player.LastVehicle || v.MainVehicle==Game.Player.Character.CurrentVehicle)
|
||||||
{
|
{
|
||||||
// Don't delete player's vehicle
|
// Don't delete player's vehicle
|
||||||
continue;
|
continue;
|
||||||
|
@ -15,7 +15,7 @@ using System.Resources;
|
|||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
// Version information
|
// Version information
|
||||||
[assembly: AssemblyVersion("1.5.3.124")]
|
[assembly: AssemblyVersion("1.5.3.126")]
|
||||||
[assembly: AssemblyFileVersion("1.5.3.124")]
|
[assembly: AssemblyFileVersion("1.5.3.126")]
|
||||||
[assembly: NeutralResourcesLanguageAttribute( "en-US" )]
|
[assembly: NeutralResourcesLanguageAttribute( "en-US" )]
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user