• 0

    posted a message on Latest Changes
    Quote from Meringue»

    Those can't be added to resource packs, only to maps - as far as i understood it.


    I had just assumed it would copy the loot tables from the resource pack to any new worlds you created after enabling it. I suppose I probably should have tested that theory.
    Posted in: Resource Pack Discussion
  • 0

    posted a message on Latest Changes
    Quote from kwerti»

    Loot tables...? Why...? I'm not sure this fits in the domain of resources.


    This is heading down the road leading towards the mythical plugin API. Eventually they hope to have everything in the game be data driven (and thus part of a resource pack).
    Posted in: Resource Pack Discussion
  • 1

    posted a message on Latest Changes

    Giant warm fuzzy hugs to KnightMiner for picking up the slack while I was not around.
    Leave it to Dinnerbone to figure out how to make sure I make the time to return though.
    These new loot tables are so very shiny. So lets have a look shall we?

    Here are the new files added in support of the loot tables:

    • assets/minecraft/loot_tables/
      • chests/
        • abandoned_mineshaft.json
        • desert_pyramid.json
        • end_city_treasure.json
        • igloo_chest.json
        • jungle_temple.json
        • nether_bridge.json
        • simple_dungeon.json
        • spawn_bonus_chest.json
        • stronghold_corridor.json
        • stronghold_crossing.json
        • stronghold_library.json
        • village_blacksmith.json
      • empty.json
      • entities/
        • bat.json
        • blaze.json
        • cave_spider.json
        • chicken.json
        • cow.json
        • creeper.json
        • elder_guardian.json
        • enderman.json
        • endermite.json
        • ghast.json
        • giant.json
        • guardian.json
        • horse.json
        • magma_cube.json
        • mushroom_cow.json
        • ocelot.json
        • pig.json
        • rabbit.json
        • sheep/
          • black.json
          • blue.json
          • brown.json
          • cyan.json
          • gray.json
          • green.json
          • light_blue.json
          • lime.json
          • magenta.json
          • orange.json
          • pink.json
          • purple.json
          • red.json
          • silver.json
          • white.json
          • yellow.json
        • shulker.json
        • silverfish.json
        • skeleton.json
        • slime.json
        • snowman.json
        • spider.json
        • squid.json
        • villager_golem.json
        • witch.json
        • wither_skeleton.json
        • wolf.json
        • zombie.json
        • zombie_pigman.json

    And here is an example file from those that shows off most of the features.


    wither_skeleton.json
    {
        "pools": [
            {
                "rolls": 1,
                "items": [
                    {
                        "item": "minecraft:coal",
                        "weight": 1,
                        "functions": [
                            {
                                "function": "set_count",
                                "count": {
                                    "min": 0,
                                    "max": 3
                                }
                            },
                            {
                                "function": "looting_enchant",
                                "count": {
                                    "min": 0,
                                    "max": 1
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "rolls": 1,
                "items": [
                    {
                        "item": "minecraft:bone",
                        "weight": 1,
                        "functions": [
                            {
                                "function": "set_count",
                                "count": {
                                    "min": 0,
                                    "max": 3
                                }
                            },
                            {
                                "function": "looting_enchant",
                                "count": {
                                    "min": 0,
                                    "max": 1
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "conditions": [
                    {
                        "condition": "killed_by_player"
                    },
                    {
                        "condition": "random_chance_with_looting",
                        "chance": 0.025,
                        "looting_multiplier": 0.01
                    }
                ],
                "rolls": 1,
                "items": [
                    {
                        "item": "minecraft:skull",
                        "weight": 1,
                        "functions": [
                            {
                                "function": "set_data",
                                "data": 1
                            }
                        ]
                    }
                ]
            }
        ]
    }

    Given that the snapshot is just now freshly out and I'm at work I haven't had a chance to really dig into this and test what all of these do but I'm already cackling at the power this appears to give us now. (Finally animals can have bones in vanilla!)

    Some things I have noticed missing from this though are loot tables for blocks (can't make wool blocks drop string instead of wool for example) and loot definitions for milking cows or sheering sheep.

    I'd also like to put in a request (assuming Dinnerbone still reads this thread) that we be able to check what sort of tool a player killed an entity with. It would be neat to be able to adjust loot drops based on the tool used to kill an entity. (Have axes make them more likely to drop heads for example.)

    Oh and for completeness the other significant change was the addition of the igloo files.

    • assets/minecraft/structures/igloo/
      • igloo_bottom.nbt
      • igloo_middle.nbt
      • igloo_top.nbt
    Posted in: Resource Pack Discussion
  • 0

    posted a message on Latest Changes
    Quote from Pintom»

    It's just the old command block texture, the one with the square. Nothing interesting.


    Well that's slightly disappointing. I was hoping for the various tints and animations in the layers or something.

    Posted in: Resource Pack Discussion
  • 0

    posted a message on Latest Changes

    Sorry I've been a bit behind on updating this. Been busy with RL stuff including an oh so lovely summer cold.

    I'll try to get a proper update done today.


    While I'm working on that though, there is something odd in today's snapshot.

    It looks like they left in the 'original' art file for the command blocks. Not sure if that was a mistake or intentional.

    /assets/minecraft/textures/blocks/command_blocks.pdn


    Of course it's using Paint.Net's native file type which is not supported by anything else that I can quickly locate and Paint.Net doesn't do linux so I can't tell you what's actually in that. It would be nice if someone were to convert that to something more standard (like psd).

    Posted in: Resource Pack Discussion
  • 1

    posted a message on Latest Changes

    Having now gotten time to actually look at the changes in the last couple of updates I don't feel so bad for being a little behind.
    Only one new texture has been added and that's in the very latest snapshot (15w32b) The rest has either been model tweaks or changes to the language file to support new features/commands. (Useful to know but not 100% relevant to resource pack making.)


    15w31a => 15w31c

    Diff: http://pastebin.com/bvCmLDyu


    15w31c => 15w32a

    Diff: http://pastebin.com/7YUMaNRh


    15w32a => 15w32b

    Diff: http://pastebin.com/rexX5Q4J


    Added

    /assets/minecraft/textures/gui/

    world_selection.png

    Posted in: Resource Pack Discussion
  • 0

    posted a message on Latest Changes

    FYI, the update of file changes from me today is going to be a bit late. I was greeted at work this morning with the ever so lovely "The server is down". Apparently MySQL decided today was a good day to die.

    Posted in: Resource Pack Discussion
  • 0

    posted a message on Latest Changes

    So, I don't suppose anyone here is making an automated way to adjust for the display differences, like a shell script?


    I mean, I could do a shell script, but I'm not that keen on regular expressions that would probably take to do it. Plus it seems like the scale values have changed a bit (it might just be me, but GUI/item frame display seems like it increased in size WAY less than every other display setting).


    I'm not sure on if any more than basic math would be needed for that (specifically GUI scale and trying to get it in the middle)


    @The_Fool76, you're into that kinda thing, right? Terminal-ly things, penguin-y things? (anyone else? I know thecrazydueSRD uses Linux, not sure if script-y, though) I don't recall you having models though, so might not be an issue for you....


    Unless people can clue me in on regex/rotation+scale+translation offsets (and any division needed, esp. with relation to scale and translation?) and maybe I could cobble something together?


    I have a few block models I've updated for my sci-fi themed Mooncraft pack so I'll probably have to wrestle with this a little. I'll let you know if I come up with an automated way to do this. It might be a while though as I've not really been terribly active on the whole minecraft texture front since the Bukkit meltdown and sale to M$. (What I really want is the blasted plugin API thing but those events kinda soured me on that dream.)

    Posted in: Resource Pack Discussion
  • 0

    posted a message on Latest Changes

    I attempted to nose around in the binary files a little to see if I could make an educated guess as to the magic incantation to get it to like the packs. That suggested that maybe we should try "V": "15w31a" If that doesn't work then I give up. (I can't test it myself being at work.)

    Posted in: Resource Pack Discussion
  • 0

    posted a message on Latest Changes
    Quote from Alvoria»

    Anyone yet figured out how to get a pack to not say that it's outdated?


    Nope, there is no mention of a version anywhere in the default pack data aside from the version json file that lists what version of the assets manifest to use. I'd try something like "version": "1.9" in the pack.mcmeta file. Assuming they even have this fully implemented yet.

    Posted in: Resource Pack Discussion
  • 1

    posted a message on Latest Changes

    The first thing that caught my eye when going over this list was the addition of the nbt files in /assets/minecraft/structures/endcity/


    I don't suppose anyone with an NBT editor handy can identify what kind of data is in there?

    There are also some structure related blocks in the texture list with names like structure_block_data and structure_block_load that I suspect are related to this.

    Posted in: Resource Pack Discussion
  • 3

    posted a message on Latest Changes

    1.8.8 => 15w31a

    Full raw diff of changes: Raw 1.8.8 => 15w31a diff


    None of the sound files have changed for this version. It's still using the 1.8 assets for that.


    Are you ready? Because this is a big list.

    Removed:
    /assets/minecraft/models/block/

    acacia_fence_ne.json
    acacia_fence_n.json
    acacia_fence_nse.json
    acacia_fence_nsew.json
    acacia_fence_ns.json
    bars_ne.json
    bars_n.json
    bars_nse.json
    bars_nsew.json
    bars_ns.json
    birch_fence_ne.json
    birch_fence_n.json
    birch_fence_nse.json
    birch_fence_nsew.json
    birch_fence_ns.json
    black_pane_ne.json
    black_pane_new.json
    black_pane_n.json
    black_pane_nse.json
    black_pane_nsew.json
    black_pane_ns.json
    black_pane_nsw.json
    black_pane_nw.json
    black_pane_se.json
    black_pane_sew.json
    black_pane_s.json
    black_pane_sw.json
    blue_pane_ne.json
    blue_pane_new.json
    blue_pane_n.json
    blue_pane_nse.json
    blue_pane_nsew.json
    blue_pane_ns.json
    blue_pane_nsw.json
    blue_pane_nw.json
    blue_pane_se.json
    blue_pane_sew.json
    blue_pane_s.json
    blue_pane_sw.json
    brown_pane_ne.json
    brown_pane_new.json
    brown_pane_n.json
    brown_pane_nse.json
    brown_pane_nsew.json
    brown_pane_ns.json
    brown_pane_nsw.json
    brown_pane_nw.json
    brown_pane_se.json
    brown_pane_sew.json
    brown_pane_s.json
    brown_pane_sw.json
    cobblestone_wall_n.json
    cyan_pane_ne.json
    cyan_pane_new.json
    cyan_pane_n.json
    cyan_pane_nse.json
    cyan_pane_nsew.json
    cyan_pane_ns.json
    cyan_pane_nsw.json
    cyan_pane_nw.json
    cyan_pane_se.json
    cyan_pane_sew.json
    cyan_pane_s.json
    cyan_pane_sw.json
    dark_oak_fence_ne.json
    dark_oak_fence_n.json
    dark_oak_fence_nse.json
    dark_oak_fence_nsew.json
    dark_oak_fence_ns.json
    fence_ne.json
    fence_n.json
    fence_nse.json
    fence_nsew.json
    fence_ns.json
    fire_floor_main.json
    fire_n_alt_flip.json
    fire_n_alt.json
    fire_ne_alt_flip.json
    fire_ne_alt.json
    fire_ne_flip.json
    fire_ne_flip_main.json
    fire_ne.json
    fire_ne_main.json
    fire_neu1_alt_flip.json
    fire_neu1_alt.json
    fire_neu1_flip.json
    fire_neu1_flip_main.json
    fire_neu1.json
    fire_neu1_main.json
    fire_neu2_alt_flip.json
    fire_neu2_alt.json
    fire_neu2_flip.json
    fire_neu2_flip_main.json
    fire_neu2.json
    fire_neu2_main.json
    fire_n_flip.json
    fire_n_flip_main.json
    fire_n.json
    fire_n_main.json
    fire_ns_alt_flip.json
    fire_ns_alt.json
    fire_nse_alt_flip.json
    fire_nse_alt.json
    fire_nse_flip.json
    fire_nse_flip_main.json
    fire_nse.json
    fire_nse_main.json
    fire_nseu1_alt_flip.json
    fire_nseu1_alt.json
    fire_nseu1_flip.json
    fire_nseu1_flip_main.json
    fire_nseu1.json
    fire_nseu1_main.json
    fire_nseu2_alt_flip.json
    fire_nseu2_alt.json
    fire_nseu2_flip.json
    fire_nseu2_flip_main.json
    fire_nseu2.json
    fire_nseu2_main.json
    fire_nsew_alt_flip.json
    fire_nsew_alt.json
    fire_nsew_flip.json
    fire_nsew_flip_main.json
    fire_nsew.json
    fire_nsew_main.json
    fire_nsewu1_alt_flip.json
    fire_nsewu1_alt.json
    fire_nsewu1_flip.json
    fire_nsewu1_flip_main.json
    fire_nsewu1.json
    fire_nsewu1_main.json
    fire_nsewu2_alt_flip.json
    fire_nsewu2_alt.json
    fire_nsewu2_flip.json
    fire_nsewu2_flip_main.json
    fire_nsewu2.json
    fire_nsewu2_main.json
    fire_ns_flip.json
    fire_ns_flip_main.json
    fire_ns.json
    fire_ns_main.json
    fire_nsu1_alt_flip.json
    fire_nsu1_alt.json
    fire_nsu1_flip.json
    fire_nsu1_flip_main.json
    fire_nsu1.json
    fire_nsu1_main.json
    fire_nsu2_alt_flip.json
    fire_nsu2_alt.json
    fire_nsu2_flip.json
    fire_nsu2_flip_main.json
    fire_nsu2.json
    fire_nsu2_main.json
    fire_nu1_alt_flip.json
    fire_nu1_alt.json
    fire_nu1_flip_main.json
    fire_nu1.json
    fire_nu1_main.json
    fire_nu2_alt_flip.json
    fire_nu2_alt.json
    fire_nu2_flip.json
    fire_nu2_flip_main.json
    fire_nu2.json
    fire_nu2_main.json
    fire_u1.json
    fire_u1_main.json
    fire_u2.json
    fire_u2_main.json
    glass_pane_ne.json
    glass_pane_new.json
    glass_pane_n.json
    glass_pane_nse.json
    glass_pane_nsew.json
    glass_pane_ns.json
    glass_pane_nsw.json
    glass_pane_nw.json
    glass_pane_se.json
    glass_pane_sew.json
    glass_pane_s.json
    glass_pane_sw.json
    gray_pane_ne.json
    gray_pane_new.json
    gray_pane_n.json
    gray_pane_nse.json
    gray_pane_nsew.json
    gray_pane_ns.json
    gray_pane_nsw.json
    gray_pane_nw.json
    gray_pane_se.json
    gray_pane_sew.json
    gray_pane_s.json
    gray_pane_sw.json
    green_pane_ne.json
    green_pane_new.json
    green_pane_n.json
    green_pane_nse.json
    green_pane_nsew.json
    green_pane_ns.json
    green_pane_nsw.json
    green_pane_nw.json
    green_pane_se.json
    green_pane_sew.json
    green_pane_s.json
    green_pane_sw.json
    heavy_pressure_plate_inventory.json
    jungle_fence_ne.json
    jungle_fence_n.json
    jungle_fence_nse.json
    jungle_fence_nsew.json
    jungle_fence_ns.json
    light_blue_pane_ne.json
    light_blue_pane_new.json
    light_blue_pane_n.json
    light_blue_pane_nse.json
    light_blue_pane_nsew.json
    light_blue_pane_ns.json
    light_blue_pane_nsw.json
    light_blue_pane_nw.json
    light_blue_pane_se.json
    light_blue_pane_sew.json
    light_blue_pane_s.json
    light_blue_pane_sw.json
    light_pressure_plate_inventory.json
    lime_pane_ne.json
    lime_pane_new.json
    lime_pane_n.json
    lime_pane_nse.json
    lime_pane_nsew.json
    lime_pane_ns.json
    lime_pane_nsw.json
    lime_pane_nw.json
    lime_pane_se.json
    lime_pane_sew.json
    lime_pane_s.json
    lime_pane_sw.json
    magenta_pane_ne.json
    magenta_pane_new.json
    magenta_pane_n.json
    magenta_pane_nse.json
    magenta_pane_nsew.json
    magenta_pane_ns.json
    magenta_pane_nsw.json
    magenta_pane_nw.json
    magenta_pane_se.json
    magenta_pane_sew.json
    magenta_pane_s.json
    magenta_pane_sw.json
    mossy_wall_ne.json
    mossy_wall_n.json
    mossy_wall_ns_above.json
    mossy_wall_nse.json
    mossy_wall_nsew.json
    mossy_wall_ns.json
    mossy_wall_post.json
    nether_brick_fence_ne.json
    nether_brick_fence_n.json
    nether_brick_fence_nse.json
    nether_brick_fence_nsew.json
    nether_brick_fence_ns.json
    oak_fence_ne.json
    oak_fence_n.json
    oak_fence_nse.json
    oak_fence_nsew.json
    oak_fence_ns.json
    orange_pane_ne.json
    orange_pane_new.json
    orange_pane_n.json
    orange_pane_nse.json
    orange_pane_nsew.json
    orange_pane_ns.json
    orange_pane_nsw.json
    orange_pane_nw.json
    orange_pane_se.json
    orange_pane_sew.json
    orange_pane_s.json
    orange_pane_sw.json
    pink_pane_ne.json
    pink_pane_new.json
    pink_pane_n.json
    pink_pane_nse.json
    pink_pane_nsew.json
    pink_pane_ns.json
    pink_pane_nsw.json
    pink_pane_nw.json
    pink_pane_se.json
    pink_pane_sew.json
    pink_pane_s.json
    pink_pane_sw.json
    pressure_plate_inventory.json
    purple_pane_ne.json
    purple_pane_new.json
    purple_pane_n.json
    purple_pane_nse.json
    purple_pane_nsew.json
    purple_pane_ns.json
    purple_pane_nsw.json
    purple_pane_nw.json
    purple_pane_se.json
    purple_pane_sew.json
    purple_pane_s.json
    purple_pane_sw.json
    red_pane_ne.json
    red_pane_new.json
    red_pane_n.json
    red_pane_nse.json
    red_pane_nsew.json
    red_pane_ns.json
    red_pane_nsw.json
    red_pane_nw.json
    red_pane_se.json
    red_pane_sew.json
    red_pane_s.json
    red_pane_sw.json
    redstone_ne.json
    redstone_n.json
    redstone_none.json
    redstone_nse.json
    redstone_nsew.json
    redstone_nsue.json
    redstone_nue.json
    redstone_nuse.json
    redstone_nusue.json
    redstone_ueuw.json
    redstone_uew.json
    redstone_une.json
    redstone_unse.json
    redstone_unsew.json
    redstone_uns.json
    redstone_unsue.json
    redstone_unsuew.json
    redstone_unue.json
    redstone_unuse.json
    redstone_unusew.json
    redstone_unus.json
    redstone_unusue.json
    redstone_unusueuw.json
    redstone_unusuew.json
    silver_pane_ne.json
    silver_pane_new.json
    silver_pane_n.json
    silver_pane_nse.json
    silver_pane_nsew.json
    silver_pane_ns.json
    silver_pane_nsw.json
    silver_pane_nw.json
    silver_pane_se.json
    silver_pane_sew.json
    silver_pane_s.json
    silver_pane_sw.json
    spruce_fence_ne.json
    spruce_fence_n.json
    spruce_fence_nse.json
    spruce_fence_nsew.json
    spruce_fence_ns.json
    stone_pressure_plate_inventory.json
    wall_ne.json
    wall_n.json
    wall_ns_above.json
    wall_nse.json
    wall_nsew.json
    wall_ns.json
    white_pane_ne.json
    white_pane_new.json
    white_pane_n.json
    white_pane_nse.json
    white_pane_nsew.json
    white_pane_ns.json
    white_pane_nsw.json
    white_pane_nw.json
    white_pane_se.json
    white_pane_sew.json
    white_pane_s.json
    white_pane_sw.json
    wooden_pressure_plate_inventory.json
    yellow_pane_ne.json
    yellow_pane_new.json
    yellow_pane_n.json
    yellow_pane_nse.json
    yellow_pane_nsew.json
    yellow_pane_ns.json
    yellow_pane_nsw.json
    yellow_pane_nw.json
    yellow_pane_se.json
    yellow_pane_sew.json
    yellow_pane_s.json
    yellow_pane_sw.json


    /assets/minecraft/textures/blocks/
    redstone_dust_cross_overlay.png
    redstone_dust_cross.png
    redstone_dust_line_overlay.png
    redstone_dust_line.png

    /assets/minecraft/textures/items/
    clock.png
    clock.png.mcmeta
    compass.png
    compass.png.mcmeta
    quiver.png

    Added:
    /assets/minecraft/blockstates/
    beetroots.json
    chorus_flower.json
    chorus_plant.json
    end_bricks.json
    end_rod.json
    grass_path.json
    purpur_block.json
    purpur_double_slab.json
    purpur_pillar.json
    purpur_slab.json
    purpur_stairs.json
    structure_block.json

    /assets/minecraft/models/block/

    acacia_fence_side.json
    beetroots_stage0.json
    beetroots_stage1.json
    beetroots_stage2.json
    beetroots_stage3.json
    birch_fence_side.json
    black_stained_glass_pane_noside_alt.json
    black_stained_glass_pane_noside.json
    black_stained_glass_pane_post.json
    black_stained_glass_pane_side_alt.json
    black_stained_glass_pane_side.json
    block.json
    blue_stained_glass_pane_noside_alt.json
    blue_stained_glass_pane_noside.json
    blue_stained_glass_pane_post.json
    blue_stained_glass_pane_side_alt.json
    blue_stained_glass_pane_side.json
    brown_stained_glass_pane_noside_alt.json
    brown_stained_glass_pane_noside.json
    brown_stained_glass_pane_post.json
    brown_stained_glass_pane_side_alt.json
    brown_stained_glass_pane_side.json
    chorus_flower_dead.json
    chorus_flower.json
    chorus_plant.json
    chorus_plant_noside1.json
    chorus_plant_noside2.json
    chorus_plant_noside3.json
    chorus_plant_noside.json
    chorus_plant_side.json
    cobblestone_wall_side.json
    cyan_stained_glass_pane_noside_alt.json
    cyan_stained_glass_pane_noside.json
    cyan_stained_glass_pane_post.json
    cyan_stained_glass_pane_side_alt.json
    cyan_stained_glass_pane_side.json
    dark_oak_fence_side.json
    end_bricks.json
    end_rod.json
    fence_side.json
    fire_floor0.json
    fire_floor1.json
    fire_side0.json
    fire_side1.json
    fire_side_alt0.json
    fire_side_alt1.json
    fire_side_alt.json
    fire_side.json
    fire_up0.json
    fire_up1.json
    fire_up_alt0.json
    fire_up_alt1.json
    fire_up_alt.json
    fire_up.json
    glass_pane_noside_alt.json
    glass_pane_noside.json
    glass_pane_post.json
    glass_pane_side_alt.json
    glass_pane_side.json
    grass_path.json
    gray_stained_glass_pane_noside_alt.json
    gray_stained_glass_pane_noside.json
    gray_stained_glass_pane_post.json
    gray_stained_glass_pane_side_alt.json
    gray_stained_glass_pane_side.json
    green_stained_glass_pane_noside_alt.json
    green_stained_glass_pane_noside.json
    green_stained_glass_pane_post.json
    green_stained_glass_pane_side_alt.json
    green_stained_glass_pane_side.json
    half_slab_purpur.json
    iron_bars_cap_alt.json
    iron_bars_cap.json
    iron_bars_post_ends.json
    iron_bars_post.json
    iron_bars_side_alt.json
    iron_bars_side.json
    jungle_fence_side.json
    light_blue_stained_glass_pane_noside_alt.json
    light_blue_stained_glass_pane_noside.json
    light_blue_stained_glass_pane_post.json
    light_blue_stained_glass_pane_side_alt.json
    light_blue_stained_glass_pane_side.json
    lime_stained_glass_pane_noside_alt.json
    lime_stained_glass_pane_noside.json
    lime_stained_glass_pane_post.json
    lime_stained_glass_pane_side_alt.json
    lime_stained_glass_pane_side.json
    magenta_stained_glass_pane_noside_alt.json
    magenta_stained_glass_pane_noside.json
    magenta_stained_glass_pane_post.json
    magenta_stained_glass_pane_side_alt.json
    magenta_stained_glass_pane_side.json
    mossy_cobblestone_wall_post.json
    mossy_cobblestone_wall_side.json
    nether_brick_fence_side.json
    oak_fence_side.json
    orange_stained_glass_pane_noside_alt.json
    orange_stained_glass_pane_noside.json
    orange_stained_glass_pane_post.json
    orange_stained_glass_pane_side_alt.json
    orange_stained_glass_pane_side.json
    pane_noside_alt.json
    pane_noside.json
    pane_post.json
    pane_side_alt.json
    pane_side.json
    pink_stained_glass_pane_noside_alt.json
    pink_stained_glass_pane_noside.json
    pink_stained_glass_pane_post.json
    pink_stained_glass_pane_side_alt.json
    pink_stained_glass_pane_side.json
    purple_stained_glass_pane_noside_alt.json
    purple_stained_glass_pane_noside.json
    purple_stained_glass_pane_post.json
    purple_stained_glass_pane_side_alt.json
    purple_stained_glass_pane_side.json
    purpur_block.json
    purpur_inner_stairs.json
    purpur_outer_stairs.json
    purpur_pillar_side.json
    purpur_pillar_top.json
    purpur_stairs.json
    red_stained_glass_pane_noside_alt.json
    red_stained_glass_pane_noside.json
    red_stained_glass_pane_post.json
    red_stained_glass_pane_side_alt.json
    red_stained_glass_pane_side.json
    redstone_dot.json
    redstone_side0.json
    redstone_side1.json
    redstone_side_alt0.json
    redstone_side_alt1.json
    redstone_side_alt.json
    redstone_side.json
    redstone_up.json
    silver_stained_glass_pane_noside_alt.json
    silver_stained_glass_pane_noside.json
    silver_stained_glass_pane_post.json
    silver_stained_glass_pane_side_alt.json
    silver_stained_glass_pane_side.json
    spruce_fence_side.json
    structure_block_corner.json
    structure_block_data.json
    structure_block.json
    structure_block_load.json
    structure_block_save.json
    thin_block.json
    upper_slab_purpur.json
    wall_side.json
    white_stained_glass_pane_noside_alt.json
    white_stained_glass_pane_noside.json
    white_stained_glass_pane_post.json
    white_stained_glass_pane_side_alt.json
    white_stained_glass_pane_side.json
    yellow_stained_glass_pane_noside_alt.json
    yellow_stained_glass_pane_noside.json
    yellow_stained_glass_pane_post.json
    yellow_stained_glass_pane_side_alt.json
    yellow_stained_glass_pane_side.json


    /assets/minecraft/models/item/

    beetroot.json
    beetroot_seeds.json
    beetroot_soup.json
    chorus_flower.json
    chorus_fruit.json
    chorus_fruit_popped.json
    chorus_plant.json
    clock_01.json
    clock_02.json
    clock_03.json
    clock_04.json
    clock_05.json
    clock_06.json
    clock_07.json
    clock_08.json
    clock_09.json
    clock_10.json
    clock_11.json
    clock_12.json
    clock_13.json
    clock_14.json
    clock_15.json
    clock_16.json
    clock_17.json
    clock_18.json
    clock_19.json
    clock_20.json
    clock_21.json
    clock_22.json
    clock_23.json
    clock_24.json
    clock_25.json
    clock_26.json
    clock_27.json
    clock_28.json
    clock_29.json
    clock_30.json
    clock_31.json
    clock_32.json
    clock_33.json
    clock_34.json
    clock_35.json
    clock_36.json
    clock_37.json
    clock_38.json
    clock_39.json
    clock_40.json
    clock_41.json
    clock_42.json
    clock_43.json
    clock_44.json
    clock_45.json
    clock_46.json
    clock_47.json
    clock_48.json
    clock_49.json
    clock_50.json
    clock_51.json
    clock_52.json
    clock_53.json
    clock_54.json
    clock_55.json
    clock_56.json
    clock_57.json
    clock_58.json
    clock_59.json
    clock_60.json
    clock_61.json
    clock_62.json
    clock_63.json
    compass_00.json
    compass_01.json
    compass_02.json
    compass_03.json
    compass_04.json
    compass_05.json
    compass_06.json
    compass_07.json
    compass_08.json
    compass_09.json
    compass_10.json
    compass_11.json
    compass_12.json
    compass_13.json
    compass_14.json
    compass_15.json
    compass_17.json
    compass_18.json
    compass_19.json
    compass_20.json
    compass_21.json
    compass_22.json
    compass_23.json
    compass_24.json
    compass_25.json
    compass_26.json
    compass_27.json
    compass_28.json
    compass_29.json
    compass_30.json
    compass_31.json
    end_bricks.json
    end_rod.json
    generated.json
    grass_path.json
    handheld.json
    handheld_rod.json
    purpur_block.json
    purpur_pillar.json
    purpur_slab.json
    purpur_stairs.json
    skull_dragon.json
    skull.json
    spectral_arrow.json
    structure_block.json
    tipped_arrow.json


    /assets/minecraft/structures/endcity/
    base_floor.nbt
    base_roof.nbt
    bridge_end.nbt
    bridge_gentle_stairs.nbt
    bridge_piece.nbt
    bridge_steep_stairs.nbt
    fat_tower_base.nbt
    fat_tower_middle.nbt
    fat_tower_top.nbt
    second_floor_2.nbt
    second_floor.nbt
    second_roof.nbt
    ship.nbt
    third_floor_b.nbt
    third_floor_c.nbt
    third_floor.nbt
    third_roof.nbt
    tower_base.nbt
    tower_floor.nbt
    tower_piece.nbt
    tower_top.nbt

    /assets/minecraft/textures/blocks
    beetroots_stage_0.png
    beetroots_stage_1.png
    beetroots_stage_2.png
    beetroots_stage_3.png
    chorus_flower_dead.png
    chorus_flower.png
    chorus_plant.png
    debug.png
    end_bricks.png
    end_rod.png
    grass_path_side.png
    grass_path_top.png
    purpur_block.png
    purpur_pillar.png
    purpur_pillar_top.png
    redstone_dust_dot.png
    redstone_dust_line0.png
    redstone_dust_line1.png
    redstone_dust_overlay.png
    structure_block_corner.png
    structure_block_data.png
    structure_block_load.png
    structure_block.png
    structure_block_save.png

    /assets/minecraft/textures/entity/
    end_gateway_beam.png

    /assets/minecraft/textures/entity/projectiles/
    arrow.png
    spectral_arrow.png
    tipped_arrow.png

    /assets/minecraft/textures/entity/shulker
    endergolem.png
    spark.png

    /assets/minecraft/textures/gui/
    bars.png

    /assets/minecraft/textures/items/

    beetroot.png
    beetroot_seeds.png
    beetroot_soup.png
    chorus_fruit.png
    chorus_fruit_popped.png
    clock_00.png
    clock_01.png
    clock_02.png
    clock_03.png
    clock_04.png
    clock_05.png
    clock_06.png
    clock_07.png
    clock_08.png
    clock_09.png
    clock_10.png
    clock_11.png
    clock_12.png
    clock_13.png
    clock_14.png
    clock_15.png
    clock_16.png
    clock_17.png
    clock_18.png
    clock_19.png
    clock_20.png
    clock_21.png
    clock_22.png
    clock_23.png
    clock_24.png
    clock_25.png
    clock_26.png
    clock_27.png
    clock_28.png
    clock_29.png
    clock_30.png
    clock_31.png
    clock_32.png
    clock_33.png
    clock_34.png
    clock_35.png
    clock_36.png
    clock_37.png
    clock_38.png
    clock_39.png
    clock_40.png
    clock_41.png
    clock_42.png
    clock_43.png
    clock_44.png
    clock_45.png
    clock_46.png
    clock_47.png
    clock_48.png
    clock_49.png
    clock_50.png
    clock_51.png
    clock_52.png
    clock_53.png
    clock_54.png
    clock_55.png
    clock_56.png
    clock_57.png
    clock_58.png
    clock_59.png
    clock_60.png
    clock_61.png
    clock_62.png
    clock_63.png
    compass_00.png
    compass_01.png
    compass_02.png
    compass_03.png
    compass_04.png
    compass_05.png
    compass_06.png
    compass_07.png
    compass_08.png
    compass_09.png
    compass_10.png
    compass_11.png
    compass_12.png
    compass_13.png
    compass_14.png
    compass_15.png
    compass_16.png
    compass_17.png
    compass_18.png
    compass_19.png
    compass_20.png
    compass_21.png
    compass_22.png
    compass_23.png
    compass_24.png
    compass_25.png
    compass_26.png
    compass_27.png
    compass_28.png
    compass_29.png
    compass_30.png
    compass_31.png
    empty_armor_slot_shield.png
    spectral_arrow.png
    tipped_arrow_base.png
    tipped_arrow_head.png


    Changed:
    /assets/minecraft/lang/
    en_US.lang

    /assets/minecraft/textures/blocks/
    door_acacia_lower.png
    door_acacia_upper.png
    door_birch_lower.png
    door_birch_upper.png
    door_dark_oak_lower.png
    door_dark_oak_upper.png
    door_jungle_lower.png
    door_jungle_upper.png

    /assets/minecraft/textures/gui/container/creative_inventory/
    tab_inventory.png

    /assets/minecraft/textures/gui/container/
    inventory.png

    /assets/minecraft/textures/gui/
    widgets.png

    /assets/minecraft/textures/particle/
    particles.png

    /assets/minecraft/blockstates/

    acacia_fence.json
    birch_fence.json
    black_stained_glass_pane.json
    blue_stained_glass_pane.json
    brown_stained_glass_pane.json
    cobblestone_wall.json
    cyan_stained_glass_pane.json
    dark_oak_fence.json
    fence.json
    fire.json
    glass_pane.json
    gray_stained_glass_pane.json
    green_stained_glass_pane.json
    iron_bars.json
    jungle_fence.json
    light_blue_stained_glass_pane.json
    lime_stained_glass_pane.json
    magenta_stained_glass_pane.json
    mossy_cobblestone_wall.json
    nether_brick_fence.json
    orange_stained_glass_pane.json
    pink_stained_glass_pane.json
    purple_stained_glass_pane.json
    red_stained_glass_pane.json
    redstone_wire.json
    silver_stained_glass_pane.json
    spruce_fence.json
    white_stained_glass_pane.json
    yellow_stained_glass_pane.json


    /assets/minecraft/models/block/

    anvil.json
    beacon.json
    button_inventory.json
    cactus.json
    carpet.json
    cube.json
    daylight_detector.json
    dragon_egg.json
    enchanting_table_base.json
    end_portal_frame_empty.json
    farmland.json
    fence_gate_closed.json
    fence_inventory.json
    fire_floor.json
    grass.json
    half_slab.json
    leaves.json
    orientable.json
    pressure_plate_up.json
    slime.json
    snow_height2.json
    stairs.json
    trapdoor_bottom.json
    wall_inventory.json


    /assets/minecraft/models/item/

    acacia_door.json
    acacia_fence_gate.json
    acacia_fence.json
    acacia_leaves.json
    acacia_log.json
    acacia_planks.json
    acacia_sapling.json
    acacia_slab.json
    acacia_stairs.json
    activator_rail.json
    allium.json
    andesite.json
    andesite_smooth.json
    anvil_intact.json
    anvil_slightly_damaged.json
    anvil_very_damaged.json
    apple.json
    armor_stand.json
    arrow.json
    baked_potato.json
    banner.json
    barrier.json
    beacon.json
    bed.json
    bedrock.json
    beef.json
    birch_door.json
    birch_fence_gate.json
    birch_fence.json
    birch_leaves.json
    birch_log.json
    birch_planks.json
    birch_sapling.json
    birch_slab.json
    birch_stairs.json
    black_carpet.json
    black_stained_glass.json
    black_stained_glass_pane.json
    black_stained_hardened_clay.json
    black_wool.json
    blaze_powder.json
    blaze_rod.json
    blue_carpet.json
    blue_orchid.json
    blue_stained_glass.json
    blue_stained_glass_pane.json
    blue_stained_hardened_clay.json
    blue_wool.json
    boat.json
    bone.json
    book.json
    bookshelf.json
    bottle_drinkable.json
    bottle_splash.json
    bow.json
    bowl.json
    bow_pulling_0.json
    bow_pulling_1.json
    bow_pulling_2.json
    bread.json
    brewing_stand.json
    brick_block.json
    brick.json
    brick_slab.json
    brick_stairs.json
    brown_carpet.json
    brown_mushroom_block.json
    brown_mushroom.json
    brown_stained_glass.json
    brown_stained_glass_pane.json
    brown_stained_hardened_clay.json
    brown_wool.json
    bucket.json
    cactus.json
    cake.json
    carrot.json
    carrot_on_a_stick.json
    cauldron.json
    chainmail_boots.json
    chainmail_chestplate.json
    chainmail_helmet.json
    chainmail_leggings.json
    charcoal.json
    chest.json
    chest_minecart.json
    chicken.json
    chiseled_brick_monster_egg.json
    chiseled_quartz_block.json
    chiseled_red_sandstone.json
    chiseled_sandstone.json
    chiseled_stonebrick.json
    clay_ball.json
    clay.json
    clock.json
    clownfish.json
    coal_block.json
    coal.json
    coal_ore.json
    coarse_dirt.json
    cobblestone.json
    cobblestone_monster_egg.json
    cobblestone_slab.json
    cobblestone_wall.json
    cod.json
    command_block.json
    command_block_minecart.json
    comparator.json
    compass.json
    cooked_beef.json
    cooked_chicken.json
    cooked_cod.json
    cooked_mutton.json
    cooked_porkchop.json
    cooked_rabbit.json
    cooked_salmon.json
    cookie.json
    cracked_brick_monster_egg.json
    cracked_stonebrick.json
    crafting_table.json
    cyan_carpet.json
    cyan_stained_glass.json
    cyan_stained_glass_pane.json
    cyan_stained_hardened_clay.json
    cyan_wool.json
    dandelion.json
    dark_oak_door.json
    dark_oak_fence_gate.json
    dark_oak_fence.json
    dark_oak_leaves.json
    dark_oak_log.json
    dark_oak_planks.json
    dark_oak_sapling.json
    dark_oak_slab.json
    dark_oak_stairs.json
    dark_prismarine.json
    daylight_detector.json
    dead_bush.json
    detector_rail.json
    diamond_axe.json
    diamond_block.json
    diamond_boots.json
    diamond_chestplate.json
    diamond_helmet.json
    diamond_hoe.json
    diamond_horse_armor.json
    diamond.json
    diamond_leggings.json
    diamond_ore.json
    diamond_pickaxe.json
    diamond_shovel.json
    diamond_sword.json
    diorite.json
    diorite_smooth.json
    dirt.json
    dispenser.json
    double_fern.json
    double_grass.json
    double_rose.json
    dragon_egg.json
    dropper.json
    dye_black.json
    dye_blue.json
    dye_brown.json
    dye_cyan.json
    dye_gray.json
    dye_green.json
    dye_light_blue.json
    dye_lime.json
    dye_magenta.json
    dye_orange.json
    dye_pink.json
    dye_purple.json
    dye_red.json
    dye_silver.json
    dye_white.json
    dye_yellow.json
    egg.json
    emerald_block.json
    emerald.json
    emerald_ore.json
    enchanted_book.json
    enchanting_table.json
    ender_chest.json
    ender_eye.json
    ender_pearl.json
    end_portal_frame.json
    end_stone.json
    experience_bottle.json
    farmland.json
    feather.json
    fermented_spider_eye.json
    fern.json
    filled_map.json
    fire_charge.json
    firework_charge.json
    fireworks.json
    fishing_rod_cast.json
    fishing_rod.json
    flint_and_steel.json
    flint.json
    flower_pot.json
    furnace.json
    furnace_minecart.json
    ghast_tear.json
    glass_bottle.json
    glass.json
    glass_pane.json
    glowstone_dust.json
    glowstone.json
    gold_block.json
    golden_apple.json
    golden_axe.json
    golden_boots.json
    golden_carrot.json
    golden_chestplate.json
    golden_helmet.json
    golden_hoe.json
    golden_horse_armor.json
    golden_leggings.json
    golden_pickaxe.json
    golden_rail.json
    golden_shovel.json
    golden_sword.json
    gold_ingot.json
    gold_nugget.json
    gold_ore.json
    granite.json
    granite_smooth.json
    grass.json
    gravel.json
    gray_carpet.json
    gray_stained_glass.json
    gray_stained_glass_pane.json
    gray_stained_hardened_clay.json
    gray_wool.json
    green_carpet.json
    green_stained_glass.json
    green_stained_glass_pane.json
    green_stained_hardened_clay.json
    green_wool.json
    gunpowder.json
    hardened_clay.json
    hay_block.json
    heavy_weighted_pressure_plate.json
    hopper.json
    hopper_minecart.json
    houstonia.json
    ice.json
    iron_axe.json
    iron_bars.json
    iron_block.json
    iron_boots.json
    iron_chestplate.json
    iron_door.json
    iron_helmet.json
    iron_hoe.json
    iron_horse_armor.json
    iron_ingot.json
    iron_leggings.json
    iron_ore.json
    iron_pickaxe.json
    iron_shovel.json
    iron_sword.json
    iron_trapdoor.json
    item_frame.json
    jukebox.json
    jungle_door.json
    jungle_fence_gate.json
    jungle_fence.json
    jungle_leaves.json
    jungle_log.json
    jungle_planks.json
    jungle_sapling.json
    jungle_slab.json
    jungle_stairs.json
    ladder.json
    lapis_block.json
    lapis_ore.json
    lava_bucket.json
    lead.json
    leather_boots.json
    leather_chestplate.json
    leather_helmet.json
    leather.json
    leather_leggings.json
    lever.json
    light_blue_carpet.json
    light_blue_stained_glass.json
    light_blue_stained_glass_pane.json
    light_blue_stained_hardened_clay.json
    light_blue_wool.json
    light_weighted_pressure_plate.json
    lime_carpet.json
    lime_stained_glass.json
    lime_stained_glass_pane.json
    lime_stained_hardened_clay.json
    lime_wool.json
    lit_furnace.json
    lit_pumpkin.json
    magenta_carpet.json
    magenta_stained_glass.json
    magenta_stained_glass_pane.json
    magenta_stained_hardened_clay.json
    magenta_wool.json
    magma_cream.json
    map.json
    melon_block.json
    melon.json
    melon_seeds.json
    milk_bucket.json
    minecart.json
    mob_spawner.json
    mossy_brick_monster_egg.json
    mossy_cobblestone.json
    mossy_cobblestone_wall.json
    mossy_stonebrick.json
    mushroom_stew.json
    mutton.json
    mycelium.json
    name_tag.json
    nether_brick_fence.json
    nether_brick.json
    netherbrick.json
    nether_brick_slab.json
    nether_brick_stairs.json
    netherrack.json
    nether_star.json
    nether_wart.json
    noteblock.json
    oak_door.json
    oak_fence_gate.json
    oak_fence.json
    oak_leaves.json
    oak_log.json
    oak_planks.json
    oak_sapling.json
    oak_slab.json
    oak_stairs.json
    obsidian.json
    old_wood_slab.json
    orange_carpet.json
    orange_stained_glass.json
    orange_stained_glass_pane.json
    orange_stained_hardened_clay.json
    orange_tulip.json
    orange_wool.json
    oxeye_daisy.json
    packed_ice.json
    paeonia.json
    painting.json
    paper.json
    pink_carpet.json
    pink_stained_glass.json
    pink_stained_glass_pane.json
    pink_stained_hardened_clay.json
    pink_tulip.json
    pink_wool.json
    piston.json
    podzol.json
    poisonous_potato.json
    poppy.json
    porkchop.json
    potato.json
    prismarine_bricks.json
    prismarine_crystals.json
    prismarine.json
    prismarine_shard.json
    pufferfish.json
    pumpkin.json
    pumpkin_pie.json
    pumpkin_seeds.json
    purple_carpet.json
    purple_stained_glass.json
    purple_stained_glass_pane.json
    purple_stained_hardened_clay.json
    purple_wool.json
    quartz_block.json
    quartz_column.json
    quartz.json
    quartz_ore.json
    quartz_slab.json
    quartz_stairs.json
    rabbit_foot.json
    rabbit_hide.json
    rabbit.json
    rabbit_stew.json
    rail.json
    record_11.json
    record_13.json
    record_blocks.json
    record_cat.json
    record_chirp.json
    record_far.json
    record_mall.json
    record_mellohi.json
    record_stal.json
    record_strad.json
    record_wait.json
    record_ward.json
    red_carpet.json
    red_mushroom_block.json
    red_mushroom.json
    red_sand.json
    red_sandstone.json
    red_sandstone_slab.json
    red_sandstone_stairs.json
    red_stained_glass.json
    red_stained_glass_pane.json
    red_stained_hardened_clay.json
    redstone_block.json
    redstone.json
    redstone_lamp.json
    redstone_ore.json
    redstone_torch.json
    red_tulip.json
    red_wool.json
    reeds.json
    repeater.json
    rotten_flesh.json
    saddle.json
    salmon.json
    sand.json
    sandstone.json
    sandstone_slab.json
    sandstone_stairs.json
    sea_lantern.json
    shears.json
    sign.json
    silver_carpet.json
    silver_stained_glass.json
    silver_stained_glass_pane.json
    silver_stained_hardened_clay.json
    silver_wool.json
    skull_char.json
    skull_creeper.json
    skull_skeleton.json
    skull_wither.json
    skull_zombie.json
    slime_ball.json
    slime.json
    smooth_red_sandstone.json
    smooth_sandstone.json
    snowball.json
    snow.json
    snow_layer.json
    soul_sand.json
    spawn_egg.json
    speckled_melon.json
    spider_eye.json
    sponge.json
    sponge_wet.json
    spruce_door.json
    spruce_fence_gate.json
    spruce_fence.json
    spruce_leaves.json
    spruce_log.json
    spruce_planks.json
    spruce_sapling.json
    spruce_slab.json
    spruce_stairs.json
    stick.json
    sticky_piston.json
    stone_axe.json
    stonebrick.json
    stone_brick_monster_egg.json
    stone_brick_slab.json
    stone_brick_stairs.json
    stone_button.json
    stone_hoe.json
    stone.json
    stone_monster_egg.json
    stone_pickaxe.json
    stone_pressure_plate.json
    stone_shovel.json
    stone_slab.json
    stone_stairs.json
    stone_sword.json
    string.json
    sugar.json
    sunflower.json
    syringa.json
    tall_grass.json
    tnt.json
    tnt_minecart.json
    torch.json
    trapdoor.json
    trapped_chest.json
    tripwire_hook.json
    vine.json
    water_bucket.json
    waterlily.json
    web.json
    wheat.json
    wheat_seeds.json
    white_carpet.json
    white_stained_glass.json
    white_stained_glass_pane.json
    white_stained_hardened_clay.json
    white_tulip.json
    white_wool.json
    wooden_axe.json
    wooden_button.json
    wooden_hoe.json
    wooden_pickaxe.json
    wooden_pressure_plate.json
    wooden_shovel.json
    wooden_sword.json
    wood_old_slab.json
    writable_book.json
    written_book.json
    yellow_carpet.json
    yellow_stained_glass.json
    yellow_stained_glass_pane.json
    yellow_stained_hardened_clay.json
    yellow_wool.json
    Posted in: Resource Pack Discussion
  • 1

    posted a message on [64x] GLIMMAR'S STEAMPUNK v.22 NOW RELEASED! + Latest Newglim City Download! + GS Redstone Pipes Add-On Pack!
    Comes crawling in from the snow covered wastes.

    So this is what color is, I had forgotten. These textures, they are too much. The colors swirl at my mind, I can hear them talking.



    Just wanted to say I love the new work and I like the redesign of the OP too.
    Posted in: Resource Packs
  • 1

    posted a message on [64x] GLIMMAR'S STEAMPUNK v.22 NOW RELEASED! + Latest Newglim City Download! + GS Redstone Pipes Add-On Pack!
    Bukkit self destructing was a fairly significant blow to the community. I think it will remain fairly quiet around here till they actually get the API done.

    Hadn't heard of TUG before, I might have to check that out. I've been poking SpaceEngineers myself which is probably best described as Minecraft In Spaaaaaaaace.
    Posted in: Resource Packs
  • 1

    posted a message on Latest Changes
    1.8 => 1.8.1-pre1
    Nothing really significant changed in terms of resource packs. There were some small tweaks to the rotation of the bow in 3rd person but that's about it. Only other thing I see of note is a possible change to how the /give command functions.

    I've included the full raw diff of all the changes for those interested in such things.

    diff -rw minecraft_1.8-pre1/assets/minecraft/lang/en_US.lang minecraft_1.8.1-pre1/assets/minecraft/lang/en_US.lang
    753a754
    > tile.pumpkinStem.name=Pumpkin Stem
    1132a1134
    > entity.ThrownPotion.name=Potion
    1548c1550,1551
    < commands.give.notFound=There is no such item with name %d
    ---
    > commands.give.item.notFound=There is no such item with name %d
    > commands.give.block.notFound=There is no such block with name %d
    1594c1597
    < commands.clone.usage=/clone [mode]
    ---
    > commands.clone.usage=/clone [maskMode] [cloneMode]
    1616c1619
    < commands.effect.usage=/effect [seconds] [amplifier] [hideParticles]
    ---
    > commands.effect.usage=/effect [seconds] [amplifier] [hideParticles] OR /effect clear
    1801c1804
    < commands.debug.usage=/debug <start|stop|chunk> [ ]
    ---
    > commands.debug.usage=/debug <start|stop>
    diff -rw minecraft_1.8-pre1/assets/minecraft/models/item/bow.json minecraft_1.8.1-pre1/assets/minecraft/models/item/bow.json
    8c8
    < "rotation": [ 5, -100, -45 ],
    ---
    > "rotation": [ 5, 80, -45 ],
    diff -rw minecraft_1.8-pre1/assets/minecraft/models/item/bow_pulling_0.json minecraft_1.8.1-pre1/assets/minecraft/models/item/bow_pulling_0.json
    8c8
    < "rotation": [ 5, -100, -45 ],
    ---
    > "rotation": [ 5, 80, -45 ],
    diff -rw minecraft_1.8-pre1/assets/minecraft/models/item/bow_pulling_1.json minecraft_1.8.1-pre1/assets/minecraft/models/item/bow_pulling_1.json
    8c8
    < "rotation": [ 5, -100, -45 ],
    ---
    > "rotation": [ 5, 80, -45 ],
    diff -rw minecraft_1.8-pre1/assets/minecraft/models/item/bow_pulling_2.json minecraft_1.8.1-pre1/assets/minecraft/models/item/bow_pulling_2.json
    8c8
    < "rotation": [ 5, -100, -45 ],
    ---
    > "rotation": [ 5, 80, -45 ],
    diff -rw minecraft_1.8-pre1/assets/minecraft/texts/credits.txt minecraft_1.8.1-pre1/assets/minecraft/texts/credits.txt
    11a12,13
    > §f Ryan Holtz
    > §f Michael Stoyke

    Posted in: Resource Pack Discussion
  • To post a comment, please .