Compare commits

..

No commits in common. "master" and "1.6.4" have entirely different histories.

3 changed files with 3 additions and 19 deletions

View File

@ -1,4 +0,0 @@
{
"java.configuration.updateBuildConfiguration": "automatic",
"java.home": "/usr/lib/jvm/java-8-openjdk/"
}

View File

@ -163,13 +163,6 @@ matterbridge
now start the server with matterlink (and forgelin) in the mods folder
and then [configure](https://github.com/42wim/matterbridge#configuration) all your needed gateways, endpoints etc
and then [RTFM!!!](https://github.com/42wim/matterbridge#configuration) and configure all your needed gateways, endpoints etc
### Building
```bash
git clone --recursive https://git.lain.faith/sorceress/MatterLink.git
cd MatterLink/
./gradlew setupDecompWorkspace
./gradlew build
```
powered by wishful thinking

View File

@ -193,7 +193,7 @@ data class BaseConfig(val rootDir: File) {
data class AvatarOptions(
val enable: Boolean = true,
val urlTemplate: String = "https://mc-heads.net/head/{uuid}",
val urlTemplate: String = "https://visage.surgeplay.com/head/512/{uuid}",
val systemUserAvatar: String = ""
)
@ -584,11 +584,6 @@ data class BaseConfig(val rootDir: File) {
"urlTemplate",
urlTemplate,
"template for constructing the user avatar url using the uuid"
),
systemUserAvatar = it.getOrDefault(
"systemUserAvatar",
systemUserAvatar,
"avatar url for the system user"
)
)
}