Oblx
Oblx
Hi, actually there is no method `getOfflinePlayers` but you might GET `/player` and then sort by online value : ```json { "link": "string", "name": "string", "online": true, "uuid": "string" }...
Hi, What ports did you try ? There are usually no trouble with default port and numbers around 8000 (not 8080 or 8888). This plugin is dope, how do you...
Same here while compiling an ERC721. Did you find a workaround @LucasSte ?
> Hi and thanks for your answer ! I was dumbly trying to convert an erc721 contract and switch to solana like I was always there. But no, definitely no....
I had a try today after upgrading to latest 1.1.18, `import 'reflect-metadata'` at the top of my entrypoint `src/index.ts` and still buggy. Luckily [the workaround](https://github.com/oven-sh/bun/issues/4677#issuecomment-1836928255) provided by @JMDowns fixed this...
@TheAyes my current working setup using bun 1.1.21 and based on the previous answer : `./bunfig.toml` ``` preload = ["./src/config/reflectMetadata.ts"] sourcemap = "external" tsconfig = "tsconfig.json" ``` `./src/config/reflectMetadata.ts` ``` import...
> Any news on this? Just installed latest verion of bun and same error with tsyringe it sais there is no reflect-metadata import, even if there is actually and is...
To special cases, special fixes 😄 Once you enter the fast era of bun, you don't want to get back to node even if there are some tricky situations. Hope...