Update opcodes to 7.3.2

This commit is contained in:
hondacrx
2017-11-17 16:56:54 -05:00
parent 39b13bfc84
commit a60fbcdf12
14 changed files with 1130 additions and 1081 deletions
+1
View File
@@ -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)
+8 -2
View File
@@ -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)