Jacob Emil Ulvedal Rosborg

Results 53 comments of Jacob Emil Ulvedal Rosborg

It seems like [inventory](https://docs.rs/inventory/0.1.5/inventory/) would be a nice fit, however I had thought about using the event system. Such that an interaction event is first fired and it has a...

Seems like tonks already uses inventory for event handler registration?

My implementation can most likely be made more generic. We can maybe get away with not having `TupleRef` and only `Tuple`.

My intentions are not for the user to write `(&entity, (&component,))` instead ```rust let query = world.query::(); for player in query.iter() { player.send_message(""); } // Or when it becomes stable...

An alternative approach would be make `query!` macro which generates a `QueryResult` struct and implement `AsRef` and `AsMut` depending on access level. ```rust #[macro_export] macro_rules! query { {$( $ident:ident: $type:ty...

What's the difference between world and dimension?

> In vanilla, each world has 3 dimensions: Overworld, Nether and The End. There are plugins that manage multiple worlds on a single spigot server, and they're popular, then why...

I'm not sure if this should be store in the default config. It would be quite easy to write a plugin, which sets the header and footer based on a...

This sounds like the coin problem, ie the minimum number of coins(1, 5, 10, 20) that makes up a given sum. Dynamic programming 101.