mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-24 11:28:22 +02:00
Fixed issues Jorge found.
This commit is contained in:
parent
16e99040e0
commit
a309e651da
4 changed files with 15 additions and 9 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue