mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Fixed issues Jorge found.
This commit is contained in:
@@ -87,9 +87,15 @@ namespace FFXIVClassic_Map_Server.actors.chara.player
|
||||
return null;
|
||||
}
|
||||
|
||||
public bool AddItem(uint itemId)
|
||||
{
|
||||
return AddItem(itemId, 1, 1);
|
||||
public bool AddItem(uint itemId)
|
||||
{
|
||||
return AddItem(itemId, 1, 1);
|
||||
}
|
||||
|
||||
public void AddItem(uint[] itemId)
|
||||
{
|
||||
for (int i = 0; i < itemId.Length; i++)
|
||||
AddItem(itemId[i]);
|
||||
}
|
||||
|
||||
public bool AddItem(uint itemId, int quantity)
|
||||
|
Reference in New Issue
Block a user