leo60228

Results 249 comments of leo60228

I've done some troubleshooting and these lines seem unrelated to the core issue: ``` avrdude: usbdev_open(): WARNING: failed to set configuration 1: Device or resource busy ``` ``` [ 6502.418058]...

Turns out these can be programmed by copying a .hex file to an emulated mass-storage device, which bypasses avrdude completely.

https://github.com/VazkiiMods/Botania/commit/213677a7f0141132173041cc20dc231924688fbc adds the check that throws the exception. To prevent it from being triggered, it also overrides `Entity changeDimension(Level)` to return `null` when the exception would occur. This is the...

Ah, https://github.com/VazkiiMods/Botania/commit/8528b374ab799515f345515b9eae39ffbd0e10d9 switches to overriding `boolean canChangeDimensions()` (`boolean canUsePortals()` on Yarn). I guess that should be checked before calling `moveToWorld`.

User, but the new version can just be put in `mods/` for now.

I'd say this package isn't really necessary more, now that async functions exist. On Thu, Jan 24, 2019, 7:31 AM Jam Risser wrote: > Is there any way to work...

For formatting it properly, try: ``` cargo fix --edition cargo fix --edition-idioms cargo fmt ```

I've had some trouble with `cargo fix` when cross-compiling, but `cargo fmt` should work fine.