forked from maruohon/litematica
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pre rewrite/fabric/1.21 block entities (#4)
* Bootstrap for entity data * Fix data channel for servux * block entities servux paste (#3) * feat: paste to servux * feat: paste to servux * feat: paste to servux * fix * Forgot to merge my fixes * Forgot to merge my fixes * Fix Accurate Placement for Crafter Orientations and a few other Block States * Update accuratePlacement Protocol V3 for use with Servux * Fix: Item Frame floor / ceiling Yaw values. * Add settings for Entity Data Syncer * Add settings for Entity Data Syncer * code cleanup / Litematic Entity NBT Save handling * code cleanup / Litematic Entity NBT Save handling --------- Co-authored-by: Liyan Zhao <[email protected]>
- Loading branch information
1 parent
d7651a6
commit 04f5158
Showing
28 changed files
with
1,471 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
package fi.dy.masa.litematica; | ||
|
||
import net.minecraft.MinecraftVersion; | ||
import fi.dy.masa.malilib.util.StringUtils; | ||
|
||
public class Reference | ||
{ | ||
public static final String MOD_ID = "litematica"; | ||
public static final String MOD_NAME = "Litematica"; | ||
public static final String MOD_VERSION = StringUtils.getModVersionString(MOD_ID); | ||
public static final String MC_VERSION = MinecraftVersion.CURRENT.getName(); | ||
public static final String MOD_TYPE = "fabric"; | ||
public static final String MOD_STRING = MOD_ID+"-"+MOD_TYPE+"-"+MC_VERSION+"-"+MOD_VERSION; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.