Philip T.

Results 136 comments of Philip T.

i think this is the most commonly used gradle plugin to shadow http://imperceptiblethoughts.com/shadow/ example: https://github.com/SpongePowered/Cookbook/blob/master/Plugin/HelloFromKotlin/build.gradle

Wanted to write down my thoughts in the API right now: 1. Consider making sessions optional for public use, they add no purpose for us. People can simply create new...

can confirm disabling in the quark.cfg on the server solved it for us management > `B:"Press F in the inventory to switch item to main hand"=false`

> Is it maybe time to redraw the cat, or is there a special history behind this image? since the base cat was already explained, yes it was on a...

I wasn't able to reproduce this with Sponge 1.12.2-2529-7.0.0-BETA-2732 and thuttech-6.0.7

Nah, nothing was changed to my knowledge. OP may have had some weird config options enabled that are recommend to be disabled with mods, like tile entity activation ranges. Without...

your sponge global.conf, specifically you wanna disable entity activation range for thuttech http://vpaste.net/nlrOo

yeah, no idea your settings seem fine, try setting the values to 0 instead of just enabled=false maybe that setting is borked

no reason to parse the html, you can get all collection objects with the webapi specifically [ISteamRemoteStorage_GetCollectionDetails](https://lab.xpaw.me/steam_api_documentation.html#ISteamRemoteStorage_GetCollectionDetails_v1) example using curl: ``` curl --data "collectioncount=1&publishedfileids[0]=1101449362" https://api.steampowered.com/ISteamRemoteStorage/GetCollectionDetails/v1/ ``` output example: https://gist.github.com/phit/71cea6c43c7071a40589881966aa9fa4

something like this should do, I just cut the first `publishedfileid` using inverted tail, since the first result will always be the collection, obviously this means you can always only...