Update opcodes to 7.3.2
This commit is contained in:
@@ -1879,6 +1879,7 @@ namespace Game.Entities
|
||||
// send transfer packets
|
||||
TransferPending transferPending = new TransferPending();
|
||||
transferPending.MapID = (int)mapid;
|
||||
transferPending.OldMapPosition = GetPosition();
|
||||
|
||||
transport = GetTransport();
|
||||
if (transport)
|
||||
|
||||
@@ -117,9 +117,15 @@ namespace Game.Entities
|
||||
public void AppendTaximaskTo(ShowTaxiNodes data, bool all)
|
||||
{
|
||||
if (all)
|
||||
data.Nodes = CliDB.TaxiNodesMask; // all existed nodes
|
||||
{
|
||||
data.CanLandNodes = CliDB.TaxiNodesMask; // all existed nodes
|
||||
data.CanUseNodes = CliDB.TaxiNodesMask;
|
||||
}
|
||||
else
|
||||
data.Nodes = m_taximask; // known nodes
|
||||
{
|
||||
data.CanLandNodes = m_taximask; // known nodes
|
||||
data.CanUseNodes = m_taximask;
|
||||
}
|
||||
}
|
||||
|
||||
public bool LoadTaxiDestinationsFromString(string values, Team team)
|
||||
|
||||
Reference in New Issue
Block a user