Skip to content
This repository has been archived by the owner on Jan 3, 2020. It is now read-only.

Commit

Permalink
blessing server URI correction
Browse files Browse the repository at this point in the history
  • Loading branch information
RecursiveG committed Mar 22, 2016
1 parent de1215f commit 4693cde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Here is the default configure:
{
"rootURIs": [
"http://www.skinme.cc/uniskin",
"https://skin.prinzeugen.net"
"https://skin.prinzeugen.net/usm"
],
"legacySkinURIs": [],
"legacyCapeURIs": []
Expand Down Expand Up @@ -55,7 +55,7 @@ For more info about the "Root" URL, visit [UniSkinAPI Document](https://github.c

### 配置说明

配置文件位于`config/UniSkinMod/UniSkinMod.json`````````
配置文件位于`config/UniSkinMod/UniSkinMod.json`
默认配置如下:

{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static UniSkinConfig loadFromFile(File configFile) throws IOException {
UniSkinMod.log.info("Creating new configuration file {}", configFile.getPath());
UniSkinConfig tmpCfg = new UniSkinConfig();
tmpCfg.rootURIs.add("http://www.skinme.cc/uniskin");
tmpCfg.rootURIs.add("https://skin.prinzeugen.net");
tmpCfg.rootURIs.add("https://skin.prinzeugen.net/usm");
String json = gson.toJson(tmpCfg);
configFile.getParentFile().mkdirs();
FileWriter wr = new FileWriter(configFile);
Expand Down

0 comments on commit 4693cde

Please sign in to comment.