标记TODO 删除多余分配
This commit is contained in:
parent
7d96b3a209
commit
34d291410c
@ -880,7 +880,6 @@ namespace PSO2SERVER
|
||||
id = client.User.PlayerId;
|
||||
foundPlayer = true;
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
var name = args[8].Trim('\"');
|
||||
@ -890,7 +889,6 @@ namespace PSO2SERVER
|
||||
foundPlayer = true;
|
||||
client = ServerApp.Instance.Server.Clients[id];
|
||||
}
|
||||
|
||||
|
||||
// Couldn't find the username
|
||||
if (!foundPlayer)
|
||||
@ -962,8 +960,7 @@ namespace PSO2SERVER
|
||||
|
||||
Client context = ServerApp.Instance.Server.Clients[id];
|
||||
|
||||
Map dstMap = null;
|
||||
|
||||
Map dstMap;
|
||||
if (!ZoneManager.Instance.InstanceExists(String.Format("tpinstance_{0}_{1}", Int32.Parse(args[3]), Int32.Parse(args[8]))))
|
||||
{
|
||||
dstMap = new Map("tpmap", Int32.Parse(args[3]), Int32.Parse(args[8]), (Map.MapType)Int32.Parse(args[2]), (Map.MapFlags)Int32.Parse(args[4]))
|
||||
|
@ -72,6 +72,7 @@ namespace PSO2SERVER.Models
|
||||
public const int Size = 0x38;
|
||||
|
||||
MemoryStream stream;
|
||||
//TODO
|
||||
ItemType type = ItemType.Consumable;
|
||||
byte[] data = new byte[Size];
|
||||
|
||||
|
@ -75,7 +75,7 @@ namespace PSO2SERVER.Packets.PSOPackets
|
||||
public QuestDifficultyEntry difficulty8;
|
||||
}
|
||||
|
||||
//Size: 32, confirmed in ctor
|
||||
//Size: 32, confirmed in ctor TODO
|
||||
public struct QuestDifficultyEntry
|
||||
{
|
||||
public uint unknown1;
|
||||
|
Loading…
Reference in New Issue
Block a user