mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-13 09:19:42 +00:00
Item: add documentation for addCreativeItem(), removeCreativeItem() and clearCreativeItems()
[ci skip]
This commit is contained in:
parent
348c2a599b
commit
ee60a7bc36
@ -137,6 +137,10 @@ class Item implements ItemIds, \JsonSerializable{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes all previously added items from the creative menu.
|
||||||
|
* Note: Players who are already online when this is called will not see this change.
|
||||||
|
*/
|
||||||
public static function clearCreativeItems(){
|
public static function clearCreativeItems(){
|
||||||
Item::$creative = [];
|
Item::$creative = [];
|
||||||
}
|
}
|
||||||
@ -145,10 +149,22 @@ class Item implements ItemIds, \JsonSerializable{
|
|||||||
return Item::$creative;
|
return Item::$creative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Adds an item to the creative menu.
|
||||||
|
* Note: Players who are already online when this is called will not see this change.
|
||||||
|
*
|
||||||
|
* @param Item $item
|
||||||
|
*/
|
||||||
public static function addCreativeItem(Item $item){
|
public static function addCreativeItem(Item $item){
|
||||||
Item::$creative[] = clone $item;
|
Item::$creative[] = clone $item;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes an item from the creative menu.
|
||||||
|
* Note: Players who are already online when this is called will not see this change.
|
||||||
|
*
|
||||||
|
* @param Item $item
|
||||||
|
*/
|
||||||
public static function removeCreativeItem(Item $item){
|
public static function removeCreativeItem(Item $item){
|
||||||
$index = self::getCreativeItemIndex($item);
|
$index = self::getCreativeItemIndex($item);
|
||||||
if($index !== -1){
|
if($index !== -1){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user