Fixed method

This commit is contained in:
Waverunner
2014-03-08 14:00:21 -05:00
parent ef1f1ffc41
commit b0172a87d6
2 changed files with 3 additions and 4 deletions
+2 -2
View File
@@ -761,9 +761,9 @@ public class PlayerService implements INetworkDispatch {
/**
* Gives a player items and shows the "New Items" message.
* @param reciever Player receiving the items
* @param items The object(s) to be given.
* @param items The object(s) to be given. This will allow multiple arguments.
*/
public void giveItems(CreatureObject reciever, SWGObject[] items) {
public void giveItems(CreatureObject reciever, SWGObject... items) {
if (reciever == null || items == null)
return;