Skip to content

Commit

Permalink
Update minigame to Minecraft 1.20.4
Browse files Browse the repository at this point in the history
  • Loading branch information
haykam821 committed Feb 12, 2024
1 parent 1054cc9 commit 1afeca0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ mod_version = 1.0.0
org.gradle.jvmargs = -Xmx1G

# Versions
minecraft_version = 1.20.2
yarn_mappings = 1.20.2+build.4
minecraft_version = 1.20.4
yarn_mappings = 1.20.4+build.3
loader_version = 0.15.6
fabric_version = 0.91.6+1.20.2
fabric_version = 0.96.0+1.20.4

plasmid_version = 0.5.102-SNAPSHOT+1.20.2
plasmid_version = 0.5.102-SNAPSHOT+1.20.4
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class MinefieldMap {
public MinefieldMap(MapTemplate template, BlockBounds start, BlockBounds end, Vec3d guideTextPos) {
this.template = template;
this.start = start;
this.spawnBox = new Box(start.min().add(0, 1, 0), start.max().add(1, 3, 1));
this.spawnBox = Box.enclosing(start.min().add(0, 1, 0), start.max().add(1, 3, 1));
this.spawnPos = start.centerBottom().add(0, 1, 0);
this.end = end;
this.guideTextPos = guideTextPos;
Expand Down

0 comments on commit 1afeca0

Please sign in to comment.