Fox2Code

Results 101 comments of Fox2Code

I'm really more interested making a simple stub before doing anything else, the goal of this issue is not to make the Windows 10 installer of Minecraft works on wine,...

I agree that `.winmd` files should be handled by `wintypes.dll` and other wine components. But `IDynamicInterfaceCastable` should be in `System.Runtime.InteropServices.dll` according to MSDN documentation.

Android uses Linux! While Android have hardcoded set of groups, it would be very to use group ids not used by Android. Also I think privileges separation could be useful,...

I though about a way to fix it, detecting when the AI loop on the same task like this should be possible to detect. Then when we detect that we...

have nothing to do with this. I have not touched the app in months because health issues. I'm sorry in advance for having health issues, I wish I could have...

@DudeSquaredEdud `onNetworkPlayerDisconnected` should work fine for it, and work on a per player basis instead of only once when entire server shutdown. If you still think `beforeWorldStop` need to be...

@KingColton1 can you be more precise on what you want. For example the specific API you would want to be added.

@KingColton1 this is not Bukkit, are you oki? What you proposed doesn't make any sense.

Your code: ```java Block block = world.getBlockId(x, y, z).getRelative(BlockFace.NORTH); ``` What your code means: ```java int blockId = world.getBlockId(x, y, z); Block block = blockId.getRelative(BlockFace.NORTH); ```