Paul Buehne

Results 32 comments of Paul Buehne

> I tried just using the emoji library, but that doesnt include emojis like :regional_indicator_b: This does make sense to some extend, as Regional Indicator Symbol Letters are not emojis...

Bevy uses [`naga_oil`](https://github.com/bevyengine/naga_oil) since [0.11](https://bevyengine.org/news/bevy-0-11/#improved-shader-imports). I think [`Preprocessor::preprocess`](https://github.com/bevyengine/naga_oil/blob/master/src/compose/preprocess.rs#L146) does the actual work.

I think the [`tower-lsp`](https://crates.io/crates/tower-lsp) crate might be potentially useful too. It uses `lsp-types` internally, but includes much functionality of an lsp server already, like concurrently handling incoming requests and routing,...

I'd like to quickly show `tower-lsp` here ```rust // this is shared data for handlers e.g. config. It must be thread safe pub struct MyLanguageServer { client: Client /* other...

`tower-lsp` is great because it requires barely any boilerplate. So less code to maintain.

Considering that the vsc extension might need a significant rewrite, it might be a good idea to "move" it into this repo as well. Might make versioning and updating easier.

I feel like before this is done the prompting system in general should be reevaluated before, as behavior in some possible situations is not well-defined. Most importantly, how should a...

This conflicts with #118. I don't think respawning multiblock tents are wanted. On the other hand, in that issue's discussion, "hunter forts" are mentioned. These could go well with this.

(Sorry for the closing and reopenings, my Browser's laggy and I misclicked)

In `config/vampirism-common.toml` I noticed an option `useVanillaCampfire` which defaults to true with a description > Use the vanilla campfire block instead of Vampirism's much cooler one I assume the current...