ModificationStation / StationAPI

A general use API for Fabric Loader mods on legacy Minecraft versions.
83 stars 19 forks source link

Opening GUI on server #80

Open kozibrodka opened 10 months ago

kozibrodka commented 10 months ago

There is need for opening gui in more cases: -for Block without Tile-Entity -for Entity, example: Moa GUI, Horse chest, Plane Fuel. -for Entity but without container, example: mocreatures taming "paper"

Right now its only possible to open gui on server for block with tileentity.

mineLdiver commented 6 months ago

First and third should be possible by using () -> null in inventory supplier.

Second should be possible by implementing an Inventory in the entity itself (or a separate class) and passing that in inventory supplier.

Testing needed.

mineLdiver commented 4 months ago

First and third were tested and proven to work with the () -> null lambda.

Second still requires testing.