Skip to content

Commit d3cf1e7

Browse files
authored
more http -> https
Why is it that every commit I've done recently has only been a half-measure
1 parent f352fe7 commit d3cf1e7

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

java/advancements.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Starting in 1.12, achievements, now referred to as "advancements", have become d
6565

6666
Advancements have a multitude of options, ranging from triggers based on the player's inventory to what biome they're in. Rewards can optionally be given, such as unlocking a recipe, providing an item, or providing experience. A new command, `/advancement`, has been introduced to supplement the files.
6767

68-
Advancements use the [JSON format](http://json.org) to store the advancement information in external files.
68+
Advancements use the [JSON format](https://json.org) to store the advancement information in external files.
6969

7070
## [![Top](https://www.skylinerw.com/images/json/icons/top.png)](#table-of-contents) <a name="errors">Errors</a>
7171

@@ -75,17 +75,17 @@ When an advancement fails for whatever reason, you can find failure messages in
7575

7676
To open the Game Output window when launching the game, you must enable it in the "Settings" tab of the launcher.
7777

78-
![](http://skylinerw.com/images/advancements/errors_output_1.png)
78+
![](https://www.skylinerw.com/images/advancements/errors_output_1.png)
7979

8080
This window will show the error and stacktrace explaining the issue.
8181

82-
![](http://skylinerw.com/images/advancements/errors_output_2.png)
82+
![](https://www.skylinerw.com/images/advancements/errors_output_2.png)
8383

8484
### Log files
8585

8686
If you no longer have the Game Output window open, you can check the output log. You can quickly access the Minecraft program files in the launcher by navigating to **Launch Options -> + Add New**, and clicking the "Go to folder" button:
8787

88-
![](http://skylinerw.com/images/advancements/errors_output_3.png)
88+
![](https://www.skylinerw.com/images/advancements/errors_output_3.png)
8989

9090
From there, navigate to the `/logs/latest.log` file, which will contain the stacktrace. In this case, the error is stating that the advancement has a display, but is missing a description:
9191

@@ -102,7 +102,7 @@ com.google.gson.JsonSyntaxException: Missing description
102102

103103
Advancements are saved as a datapack in the world folder to be distributed with the world itself, inside the `/datapacks/` folder. Here is an example structure within the world folder, where "New World" is the name of the world folder:
104104

105-
![](http://skylinerw.com/images/advancements/files_2.png)
105+
![](https://www.skylinerw.com/images/advancements/files_2.png)
106106

107107
For more information on setting up a data pack (including the creation of the required `pack.meta` file), see [here](https://minecraft.gamepedia.com/Data_pack).
108108

@@ -183,7 +183,7 @@ Windows Notepad is capable of saving as UTF-8, though will default to ANSI. Inst
183183

184184
Image example:
185185

186-
![](http://skylinerw.com/images/advancements/editing_1.png)
186+
![](https://www.skylinerw.com/images/advancements/editing_1.png)
187187

188188
### Notepad++
189189

@@ -197,7 +197,7 @@ Image example:
197197

198198
Image example:
199199

200-
![](http://skylinerw.com/images/advancements/editing_2.png)
200+
![](https://www.skylinerw.com/images/advancements/editing_2.png)
201201

202202
### Atom
203203

@@ -211,7 +211,7 @@ Image example:
211211

212212
Image example:
213213

214-
![](http://skylinerw.com/images/advancements/editing_3.png)
214+
![](https://www.skylinerw.com/images/advancements/editing_3.png)
215215

216216
# Data structures
217217

@@ -440,7 +440,7 @@ The following timeline describes the order in which specific triggers activate i
440440

441441
**This image is currently outdated; last updated 18w03b.**
442442

443-
![](http://i.imgur.com/meB4V6V.png)
443+
![](https://i.imgur.com/meB4V6V.png)
444444

445445
## [![Top](https://www.skylinerw.com/images/json/icons/top.png)](#table-of-contents) <a name="requirements">Requirements</a>
446446

@@ -585,7 +585,7 @@ Given the following advancement, which uses a simple string for the title:
585585

586586
This will display as:
587587

588-
![](http://skylinerw.com/images/advancements/display_1.png)
588+
![](https://www.skylinerw.com/images/advancements/display_1.png)
589589

590590
Or you can specify formatting for the text using the text component (note that many text component features are unavailable, such as selectors, scores, and event listeners):
591591

@@ -609,7 +609,7 @@ Or you can specify formatting for the text using the text component (note that m
609609

610610
This will display as:
611611

612-
![](http://skylinerw.com/images/advancements/display_4.png)
612+
![](https://www.skylinerw.com/images/advancements/display_4.png)
613613

614614
#### 2. `description`
615615

@@ -645,7 +645,7 @@ Given the following advancement, which uses a simple string for the description:
645645

646646
This will display as:
647647

648-
![](http://skylinerw.com/images/advancements/display_6.png)
648+
![](https://www.skylinerw.com/images/advancements/display_6.png)
649649

650650
Or you can specify formatting for the text using the text component (note that many text component features are unavailable, such as selectors, scores, and event listeners):
651651

@@ -677,7 +677,7 @@ Or you can specify formatting for the text using the text component (note that m
677677

678678
This will display as:
679679

680-
![](http://skylinerw.com/images/advancements/display_7.png)
680+
![](https://www.skylinerw.com/images/advancements/display_7.png)
681681

682682
#### 3. `icon`
683683

@@ -722,7 +722,7 @@ The `background` is an optional string for all advancements, but is only used by
722722

723723
Image of the result:
724724

725-
![](http://skylinerw.com/images/advancements/display_2.png)
725+
![](https://www.skylinerw.com/images/advancements/display_2.png)
726726

727727
### [![Top](https://www.skylinerw.com/images/json/icons/top.png)](#table-of-contents) <a name="display-frame">Frame</a>
728728

@@ -749,7 +749,7 @@ The following advancement makes use of the "challenge" frame.
749749
}
750750
```
751751

752-
![](http://skylinerw.com/images/advancements/display_3.png)
752+
![](https://www.skylinerw.com/images/advancements/display_3.png)
753753

754754
The following advancement makes use of the "goal" frame.
755755

@@ -772,7 +772,7 @@ The following advancement makes use of the "goal" frame.
772772
}
773773
```
774774

775-
![](http://skylinerw.com/images/advancements/display_5.png)
775+
![](https://www.skylinerw.com/images/advancements/display_5.png)
776776

777777
### [![Top](https://www.skylinerw.com/images/json/icons/top.png)](#table-of-contents) <a name="display-toast">Show toast</a>
778778

@@ -946,11 +946,11 @@ All rewards can be used at the same time.
946946

947947
When an advancement has a [display](#display), it will be shown in the "Advancements" menu under a relevant tab. [Root](#tree-root) advancements will be the "owner" of a tab, with new tabs appearing for each unique root:
948948

949-
![](http://skylinerw.com/images/advancements/tree_1.png)
949+
![](https://www.skylinerw.com/images/advancements/tree_1.png)
950950

951951
Any advancements referring to the root will be its [children](#tree-branch) and are displayed in a branching tree:
952952

953-
![](http://skylinerw.com/images/advancements/tree_2.png)
953+
![](https://www.skylinerw.com/images/advancements/tree_2.png)
954954

955955
### [![Top](https://www.skylinerw.com/images/json/icons/top.png)](#table-of-contents) <a name="tree-root">Root</a>
956956

@@ -1057,7 +1057,7 @@ For example, the following set of advancements defines a root and two branches,
10571057

10581058
Visual:
10591059

1060-
![](http://skylinerw.com/images/advancements/tree_3.png)
1060+
![](https://www.skylinerw.com/images/advancements/tree_3.png)
10611061

10621062
Changing `/custom/branch_b.json` to the following will cause it to branch off of "custom:branch_a" rather than the root:
10631063

@@ -1081,11 +1081,11 @@ Changing `/custom/branch_b.json` to the following will cause it to branch off of
10811081

10821082
Which would then show as a direct line of branches:
10831083

1084-
![](http://skylinerw.com/images/advancements/tree_4.png)
1084+
![](https://www.skylinerw.com/images/advancements/tree_4.png)
10851085

10861086
Since you can have multiple branches per parent, complex trees can be created. The following image is a segment from the default "story" tab for vanilla Minecraft, showing complex connections between branches:
10871087

1088-
![](http://skylinerw.com/images/advancements/tree_5.png)
1088+
![](https://www.skylinerw.com/images/advancements/tree_5.png)
10891089

10901090
# Commands
10911091

@@ -1101,8 +1101,8 @@ Since you can have multiple branches per parent, complex trees can be created. T
11011101

11021102
## [![Top](https://www.skylinerw.com/images/json/icons/top.png)](#table-of-contents) <a name="external-links">External links</a>
11031103

1104-
- [Generic JSON Validator](http://jsonlint.com)
1105-
- [Minecraft Wiki: Advancements](http://minecraft.gamepedia.com/Advancements)
1104+
- [Generic JSON Validator](https://jsonlint.com)
1105+
- [Minecraft Wiki: Advancements](https://minecraft.gamepedia.com/Advancements)
11061106

11071107
Translations:
11081108

0 commit comments

Comments
 (0)