Skip to content

Commit 2fa8c68

Browse files
authored
Update to 1.21.7 (#100)
* update version thingies * Updated pack version on getting started page
1 parent bde74e4 commit 2fa8c68

37 files changed

Lines changed: 39 additions & 39 deletions

File tree

src/routes/guide/adding-new-features/custom-items/crafting/+page.svx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Recipes for your Custom Items
33
description: "Learn how to make custom crafting recipes for custom items in Minecraft Datapacks."
4-
version: 1.21.6
4+
version: 1.21.7
55
---
66

77
# Creating Recipes for your Custom Items

src/routes/guide/adding-new-features/custom-items/intro/+page.svx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Recipes for your Custom Items
33
description: "Learn how to make custom items with Minecraft Java datapacks"
44
tags: beginner, guide, custom_items, item_components
5-
version: 1.21.6
5+
version: 1.21.7
66
---
77

88
# Creating Custom Items

src/routes/guide/adding-new-features/jukebox-songs/+page.svx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Adding Jukebox Songs
33
description: "Learn how to create custom music discs and custom jukebox songs with Minecraft datapacks"
4-
version: 1.21.6
4+
version: 1.21.7
55
---
66

77
# How to add custom jukebox songs

src/routes/guide/adding-new-features/painting-variants/+page.svx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Adding Paitings
33
description: "Learn how to add custom paitings to Minecraft just with a datapack and a resourcepack!"
4-
version: 1.21.6
4+
version: 1.21.7
55
---
66

77
# How to add custom paintings

src/routes/guide/adding-new-features/smithing-trims/+page.svx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Adding Smithing Trims
33
description: "Learn how to add custom smithing trims patterns to Minecraft just with a datapack and a resourcepack!"
4-
version: 1.21.6
4+
version: 1.21.7
55
---
66

77
# How to add custom Smithing Trims

src/routes/guide/datapacks-for-mods/mods-vs-datapacks/+page.svx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: MCFunction vs Coding
33
description: "Learn the differences between using MCFunctions and traditional coding."
4-
version: 1.21.6
4+
version: 1.21.7
55
---
66

77
# Mods vs Datapacks

src/routes/guide/getting-started/+page.svx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: How to Make a Minecraft Datapack - Beginner's Guide
33
tags: guide, beginner, Minecraft, datapack, tutorial, step-by-step
44
description: Learn how to create a Minecraft datapack with our beginner's guide. This step-by-step tutorial will help you understand the basics of datapack creation, even if you have little coding knowledge. Start enhancing your Minecraft experience today!
5-
version: 1.21.6
5+
version: 1.21.7
66
---
77

88
<script lang="ts">
@@ -62,7 +62,7 @@ as well as holding the basic information of the pack. **Create `pack.mcmeta`, an
6262
{
6363
"pack": {
6464
"description": "DATAPACK NAME HERE",
65-
"pack_format": 80
65+
"pack_format": 81
6666
}
6767
}
6868
```
@@ -71,7 +71,7 @@ If you're interested, here's what this file means:
7171

7272
- `pack` is an object containing the metadata of the file.
7373
- `description` is the name of your datapack, usually along with a short description of what your pack does.
74-
- `pack_format` tells Minecraft what versions this datapack works in. `80` is the latest for 1.21.6
74+
- `pack_format` tells Minecraft what versions this datapack works in. `81` is the latest for 1.21.7
7575

7676
## Writing your first function
7777

src/routes/guide/mcf-vs-code/+page.svx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: MCFunction vs Coding
33
description: "Learn the differences between using MCFunctions and traditional coding."
4-
version: 1.21.6
4+
version: 1.21.7
55
---
66

77
# MCFunction vs Traditional Coding

src/routes/guide/misc/raycasts/+page.svx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Raycasts
33
description: "Raycasting is when we shoot a line from the player's eyes in the direction they are looking. We use this to get what the player is looking at, and do something to it, such as spawning an explosion."
4-
version: 1.21.6
4+
version: 1.21.7
55
---
66

77
# Raycasting

src/routes/guide/misc/slowcasts/+page.svx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Slowcast
33
description: "Like a raycast but in slow. Useful if simply using tp every tick skips over too much when making it fast."
4-
version: 1.21.6
4+
version: 1.21.7
55
---
66

77
# Slowcasting

0 commit comments

Comments
 (0)