Skip to content

Commit

Permalink
Fix a couple of minor inconsistencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SquidDev committed May 5, 2024
1 parent eac0def commit c4dd0c8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# CC:T Datapack Builder
# [CC:T Datapack Builder][site]
This website provides a simple UI for building custom datapacks for
[CC: Tweaked], allowing you to add turtle tools and tweak other behaviour.

[CC: Tweaked]: https://tweaked.cc
[site]: https://datapacks.madefor.cc
6 changes: 3 additions & 3 deletions src/components/Download.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ const Download: Component<{ name: string, pack: PackOutput }> = props => {

return <div class={styles.downloadSplit}>
<div class={styles.downloadSummary}>
<h3>Download as Data Pack</h3>
<h3>Download as Datapack</h3>
<p>
Download as a data pack. This file should be saved to <code>datapacks/{packFileName()}.zip</code> in your world
Download as a datapack. This file should be saved to <code>datapacks/{packFileName()}.zip</code> in your world
folder.
</p>
</div>
Expand All @@ -41,7 +41,7 @@ const Download: Component<{ name: string, pack: PackOutput }> = props => {
<div class={styles.downloadSummary}>
<h3>Download as Mod</h3>
<p>
Download as a mod. This file should be saved to <code>mods/{packFileName()}.zip</code> in your Minecraft folder.
Download as a mod. This file should be saved to <code>mods/{packFileName()}.jar</code> in your Minecraft folder.
</p>
</div>
<div class={styles.downloadButtons}>
Expand Down

0 comments on commit c4dd0c8

Please sign in to comment.