Update to new libzontreck

This commit is contained in:
zontreck 2024-01-15 21:27:58 -07:00
parent 2fd88b1eaa
commit 32a61e7925
11 changed files with 2626 additions and 33 deletions

View file

@ -72,7 +72,7 @@ public class CompressionChamberMenu extends AbstractContainerMenu
if(progress != 0 && max != 0)
{
int percent = progress * max / progressArrow;
int percent = progress * progressArrow / max;
return percent;
}

View file

@ -63,7 +63,7 @@ public class ItemScrubberMenu extends AbstractContainerMenu
if(progress != 0 && max != 0)
{
int percent = progress * max / progressArrow;
int percent = progress * progressArrow / max;
return percent;
}

View file

@ -63,7 +63,7 @@ public class MagicalScrubberMenu extends AbstractContainerMenu
if(progress != 0 && max != 0)
{
int percent = progress * max / progressArrow;
int percent = progress * progressArrow / max;
return percent;
}

View file

@ -2,6 +2,7 @@
"values": [
"otemod:aurora_block",
"otemod:aurora_door",
"otemod:eternium_block",
"otemod:ilusium_block",
"otemod:item_scrubber",
"otemod:magical_scrubber",

View file

@ -0,0 +1,11 @@
{
"type": "otemod:threshold",
"generator": {
"type": "minecraft:noise",
"settings": "otemod:threshold",
"biome_source": {
"type": "minecraft:multi_noise",
"biomes": []
}
}
}

View file

@ -1,25 +1,25 @@
{
"ultrawarm": false,
"natural": true,
"piglin_safe": false,
"respawn_anchor_works": false,
"bed_works": false,
"has_raids": true,
"has_skylight": false,
"has_ceiling": false,
"coordinate_scale": 1,
"ambient_light": 0,
"logical_height": 384,
"effects": "minecraft:the_end",
"infiniburn": "#minecraft:infiniburn_overworld",
"min_y": -64,
"height": 384,
"monster_spawn_light_level": {
"type": "minecraft:uniform",
"value": {
"min_inclusive": 0,
"max_inclusive": 7
}
},
"monster_spawn_block_light_limit": 0
}
{
"ultrawarm": false,
"natural": true,
"piglin_safe": true,
"respawn_anchor_works": false,
"bed_works": false,
"has_raids": false,
"has_skylight": true,
"has_ceiling": false,
"coordinate_scale": 16,
"ambient_light": 0,
"logical_height": 384,
"effects": "minecraft:end",
"infiniburn": "#minecraft:infiniburn_overworld",
"min_y": -64,
"height": 384,
"monster_spawn_light_level": {
"type": "minecraft:uniform",
"value": {
"min_inclusive": 0,
"max_inclusive": 7
}
},
"monster_spawn_block_light_limit": 0
}

View file

@ -0,0 +1,20 @@
{
"type": "minecraft:block",
"pools": [
{
"rolls": 1,
"entries": [
{
"type": "minecraft:item",
"name": "otemod:eternium_block"
}
],
"conditions": [
{
"condition": "minecraft:survives_explosion"
}
]
}
]
}

View file

@ -0,0 +1,13 @@
{
"type": "create:sandpaper_polishing",
"ingredients": [
{
"item": "biomesoplenty:rose_quartz_chunk"
}
],
"results": [
{
"item": "create:polished_rose_quartz"
}
]
}

File diff suppressed because it is too large Load diff