fougerite / Fougerite

Fougerite Project is unofficial fork of Magma. Forked to develop it with community.
http://fougerite.com/
Other
4 stars 19 forks source link

Add Items to Chests? #55

Open dretax opened 10 years ago

dretax commented 10 years ago

How about adding these new methods:

Entity.AddItem("StringName", quantity); Entity.RemoveItem("StringName", quantity); Entity.Contains("StringName");

balu92 commented 10 years ago

we can do now, don't we?:

if(Entity.hasInventory) {
    Entity.Inventory.AddItem("StringName", quantity);
}