mirror of
https://github.com/Jacobwasbeast/LegacyWeaveLoader.git
synced 2026-05-26 23:54:31 +00:00
feat(api/runtime): java-style assets and localization sync
This commit is contained in:
@@ -59,7 +59,7 @@ public static class BlockRegistry
|
||||
properties.IconValue,
|
||||
properties.LightEmissionValue,
|
||||
properties.LightBlockValue,
|
||||
properties.NameValue ?? "",
|
||||
properties.NameValue?.Resolve() ?? "",
|
||||
properties.RequiredHarvestLevelValue,
|
||||
(int)properties.RequiredToolValue,
|
||||
properties.AcceptsRedstonePowerValue ? 1 : 0);
|
||||
@@ -98,7 +98,7 @@ public static class BlockRegistry
|
||||
properties.IconValue,
|
||||
properties.LightEmissionValue,
|
||||
properties.LightBlockValue,
|
||||
properties.NameValue ?? "",
|
||||
properties.NameValue?.Resolve() ?? "",
|
||||
properties.RequiredHarvestLevelValue,
|
||||
(int)properties.RequiredToolValue,
|
||||
properties.AcceptsRedstonePowerValue ? 1 : 0);
|
||||
@@ -144,7 +144,7 @@ public static class BlockRegistry
|
||||
properties.IconValue,
|
||||
properties.LightEmissionValue,
|
||||
properties.LightBlockValue,
|
||||
properties.NameValue ?? "",
|
||||
properties.NameValue?.Resolve() ?? "",
|
||||
properties.RequiredHarvestLevelValue,
|
||||
(int)properties.RequiredToolValue,
|
||||
properties.AcceptsRedstonePowerValue ? 1 : 0);
|
||||
@@ -191,7 +191,7 @@ public static class BlockRegistry
|
||||
properties.IconValue,
|
||||
properties.LightEmissionValue,
|
||||
properties.LightBlockValue,
|
||||
properties.NameValue ?? "",
|
||||
properties.NameValue?.Resolve() ?? "",
|
||||
properties.RequiredHarvestLevelValue,
|
||||
(int)properties.RequiredToolValue,
|
||||
properties.AcceptsRedstonePowerValue ? 1 : 0,
|
||||
|
||||
Reference in New Issue
Block a user