[MECH] OtherDrops 2.8- Ultimate block/mob/player drop editing [1.5.2]

Discussion in 'Archived: Plugin Releases' started by Zarius, Jun 12, 2011.

  1. Offline

    Zarius

    [​IMG]


    Want to fix glass/stairs/boat drops? Want to gather ice/glowstone/grass in a balanced manner? Want to smelt ore with golden tools? Want to cause chaos with undead that rise again? Now you can, simply by enabling the included example files or delve into the more advanced customisation and make drops work the way you want.

    OtherBlocks aims to give you ultimate control over what item that blocks/entities drop when destroyed, depending on how they were destroyed. Compatible with WorldGuard. Lightweight! Only scans what it needs to and ignores the rest.
    Download: BukkitDev (download link on there) | Source Code

    Included Modules
    * Fix undroppables: fix drops for stairs, glass (don't use your hands - ouch), boats & bookshelves (1.8 stairs included)
    * Gold tools (basic): gold tools have a chance of dropping the complete block for grass, ice & glowstone.
    * Gold tools (smelt): gold tools have a chance of mining an ingot directly from ores.
    * Ore Extraction: using the usual tools, ingots are ripped out of ores, leaving the stone behind.
    * Leaf overhaul: adds leaf drops (apples, cocoa, leaves, sticks & a very small chance of golden apple).
    * Undead Chaos: beware the night! Zombies & skeletons rise again and even players rise back from the dead (player deaths spawn more zombies/skeletons).
    * and more...

    Custom Configuration Examples
    Code:
        # Simple glass drop fix
        GLASS:
          - drop: GLASS
     
        # Players drop Zombies on death, 50% of the time
        PLAYER:
          - drop: CREATURE_ZOMBIE
            chance: 50%
     
        # Spiders killed with any sword at night have a 10% chance to drop web,
        # otherwise they drop whatever they normally would
        CREATURE_SPIDER:
          - tool: ANY_SWORD
            time: NIGHT
            drop: WEB
            chance: 10%
     
        # Trees drop apples (or cocoa from birch trees)
        SPECIAL_LEAFDECAY@GENERIC:
          - drop: APPLE
            chance: 5%
        SPECIAL_LEAFDECAY@BIRCH:
          - drop: DYE@BROWN
            chance: 5%
    
    If you are getting errors with the word "snakeyaml" in it, your config file isn't properly formatted.
    Test it on this website (or this one).

    See the dev.bukkit page for full details on how to set up OtherDrops, a complete parameters list and further examples.


    Changelog

    Newest changelog details here.


    Main author: @Zarius
    Contributors: @Celtic Minstrel, raws
    Original author: @cyklo
     
  2. Offline

    slimpyman

    DIAMOND_ORE:
    - tool: [IRON_PICKAXE, GOLD_PICKAXE ,DIAMOND_PICKAXE]
    drop: REDSTONE
    chance: 100
    quantity: 2-4
    dropspread: true
    drop: IRON_ORE
    chance: 100
    quantity: 2-4
    drop: GOLD_ORE
    chance: 100
    quantity: 2-4
    drop: COAL
    chance: 100
    quantity: 3-5


    anyone suggest why it just shoots out coal and not all the other ones?
     
  3. Offline

    Zarius

    Because you haven't separated the groups. Each dash "-" is a new drop - in this case you have only one drop and the last one (coal) overrides all the others.

    Try:

    Code:
      DIAMOND_ORE:
        - tool: [IRON_PICKAXE, GOLD_PICKAXE ,DIAMOND_PICKAXE]
          drop: REDSTONE
          chance: 100
          quantity: 2-4
          dropspread: true
          
        - tool: [IRON_PICKAXE, GOLD_PICKAXE ,DIAMOND_PICKAXE]
          drop: IRON_ORE
          chance: 100
          quantity: 2-4
          
        - tool: [IRON_PICKAXE, GOLD_PICKAXE ,DIAMOND_PICKAXE]
          drop: GOLD_ORE
          chance: 100
          quantity: 2-4
          
        - tool: [IRON_PICKAXE, GOLD_PICKAXE ,DIAMOND_PICKAXE]
          drop: COAL
          chance: 100
          quantity: 3-5
    
    Hmm... the world thing is odd - we'll look into it.

    The startup message is confusing but it means that "yeti permissions not enabled" and uses bukkit superperms by default (will look at improving the message).

    Yeah, DYE@BROWN = cocoa :) Yup, I took over the mod from cyklo and added multi-world, heaps of conditions, events and left/right click actions, amongst other stuff. Celtic Minstrel has helped a lot with version 2.0 with a massive restructure of the code which we've been working on together to fine tune for a final 2.0 release.

    I plan on supporting and improving this plugin through the various minecraft updates - no plans to stop for now :)

    Good news, the economy 6 bug is fixed and will be in beta 5.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 15, 2016
  4. Offline

    TheMap

    Thanks, its pretty much the basis of my whole server without it the server doesn't function. I am pretty sure that it was working before the 1.8 update. But since I was still in the building period during that time I cant be positive.
     
  5. Offline

    Zarius

    Fixed, finally :D A few issues with this one - the dash definitely needs to be removed in the current version (I might later support the dash just in case people use it but not high priority for now). Also fixed it so that a invalid world doesn't set true for all worlds (just ignored) & allowed use of both "world" and "worlds" parameters.

    Compiling the beta-5 build....
     
  6. Offline

    nemanja

    Could be me making an error somewhere, but when I put

    CREATURE_CHICKEN:
    - tool: ANY
    drop: AIR

    Everyone can still get stuff from killing chickens. Spaces are ok, it's not that.
     
  7. Offline

    TheMap

    You are amazing. Thank you so much!
     
  8. Offline

    Zarius

    That should work fine :| Using beta-4? The config can be made a bit shorter though:

    Code:
      CHICKEN:
        - drop: AIR
    
     
  9. Offline

    nemanja

    Yes, I am using beta-4. I tried your way, but I still get drops from chicken.
     
  10. Offline

    Zarius

    Hmm... I think this is a problem with Bukkit - Chickens don't seem to be triggering entity death events (same thing happened with sheep with the 1.7 update).

    Beta-5 release: Download

    Version 2.0-beta5 (2011/09/21)

    * add XP@<amount> drop
    * fix for iConomy6
    * fix tnt overriding worldguard setting
    * finetune error/startup messages
    * material aliases in tools (eg. hands=air)
    * fix defaults blocks in example configs
    * updated creature groups with 1.8 mobs
    * added CREATURE_BUG group
    * more work on making the config more robust (eg. cope with RED ROSE for RED_ROSE, cope with alternate parameter names - world/worlds, tool/tools, etc)
    * fix for NPE when boats burn
    * fix for vehicles with drops not being removed

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 15, 2016
  11. Offline

    Celtic Minstrel

    It might not have been only the hyphen, but the hyphen was an issue nevertheless. :)

    I thought I did that aeons ago? At least for some of the parameters; I may have missed others.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 15, 2016
  12. Offline

    Zarius

    Hmm, I'm sure 1.96 supports the alternate parameter names but I didn't see anything in 2.0 - unless I missed it somewhere, either way it works now :D
     
  13. Offline

    TheMap

    Hmm i dunno I used a default ob- fix_undropables for the skeleton of mine so it came standard. Never seemed to affect the drops before. Although it is removed now so I suppose no harm. :cool:
     
  14. Offline

    Zarius

    It used to be valid config - we've fixed up all the included examples now so shouldn't be so confusing.
     
  15. Offline

    Rofang

    Great update(s)! Here's where I pester you guys to add the new values to the BukkitDev page. :)
     
  16. Offline

    Zarius

    Yeah, definitely needed :) We could do with some more documenters to assist in improving the BukkitDev page (making sure everything's documented and translating changes/additions in changelogs to the docs).

    Anyone who wants to assist with this please PM me and I'll look into adding you as an official documenter.

    I'm already almost 2 hours past my preferred bedtime so no documenting from me tonight - and I'll probably have a bunch of things to fix tomorrow :D

    Oh, should mention that I'll be off on a week long holiday from Friday so probably wont be able to do much coding (might be able to use a laptop, will see). Will still keep an eye on the forums though.

    Just tagging you guys to let you know that drop: XP@<amount> is in now :)

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 15, 2016
  17. Offline

    nemanja

    Oh ok then, I guess I'll wait for it to update.
     
  18. Offline

    Rofang

    I'm using beta 5 in what I think is CB1150, and I can't get any of the OD commands to respond. /odr, /od reload, /od show <whatever>... They all just produce the list of commands as if I'd typed /od.
     
  19. Offline

    AndyFox42

    Just wanted to say the newest version works like a charm. Thanks so much for adding iCo6 support :D
     
  20. Offline

    RugRats

    @Rofang
    Welcome to the team.

    Already reported this... @Zarius said he fixed it and he did. So it works for me :O! Wonder what could be the problem :O

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jul 15, 2016
  21. Offline

    Rofang

    Hmm, dunno. I'm using PEX and have given myself the specific nodes for those commands (as well as some asterisk nodes for good measure).

    Thanks for the welcome, by the way.
     
  22. Offline

    RugRats

    No problem! I happen to be using PEX aswell but I'm sure celtic or zarius will beable to find a solution. It's most likely something out side of the plugin because I tested on OD2.0 Beta 5 the /od show command and it works great.. :eek:
     
  23. Offline

    Rofang

    I was looking through the item aliases, and I need clarification on wooden doors.

    With iron doors, the Bukkit name makes a clear distinction between the iron door in-world block (#71, IRON_DOOR_BLOCK) and the iron door inventory item (#330, IRON_DOOR). The wooden door, though, has always been a pickle because of the vague names:
    • #64 is named WOODEN_DOOR. My testing shows that this is the in-world block.
    • #324 is named WOOD_DOOR. My testing shows this to be the inventory item.
    Here's what doesn't add up for me: If the new OD aliases make "WOOD_DOOR" synonymous with "WOODEN_DOOR," how do you know which one you're going to get, ID 64 or ID 324? Can you guys make it so that "WOOD(EN)_DOOR_BLOCK" routes to ID 64, while "WOOD(EN)_DOOR" goes to 324? This would clash with Bukkit's default names, but man would it eliminate a lot of confusion.
     
  24. Offline

    Zarius

    That occurs if there was a NullPointerException or some other error whilst starting up - can you post your start-up messages?

    Oops... didn't think of this issue with the doors - will fix that alias.

    We have already added an alias for WOODEN_DOOR_BLOCK - see the source file here.
     
  25. Offline

    slimpyman

    mobdrops broken?

    CREATURE_SQUID:
    - tool: ANY
    drop: RAW_FISH
    chance: 23
    - tool: GOLD_SWORD
    drop: ROTTEN_FLESH
    quantity: 3

    its not dropping anything but inksacks

    if its killed with gold sword will it still drop fish 23 percent of the time on top of the 3rottenflesh
     
  26. Offline

    Zarius

    Code:
         CREATURE_SQUID:
           - tool: ANY
             drop: RAW_FISH
             chance: 100  # changed to 100% for testing...
           - tool: GOLD_SWORD
             drop: ROTTEN_FLESH
             quantity: 3
    
    Works fine for me (beta-5). Yes - the rotten flesh will be in addition to the chance of raw fish unless you use a unique flag (can't do that yet, exclusive did serve that function but it's been changed and still working out the best way to move forward).
     
  27. Offline

    Singso

    I have a little problem with this plugin.
    I just want to get 1-2 coal out of a tree, when cutting it down with a goldaxe, but nothing happens...
    There is only the standarddrop.

    log:
    Code:
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Events node created.
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] [Event Explosions] Explosions v1.0 loaded.
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Collecting and loading events
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Event group Explosions loaded
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] [Event Sheep] Sheep v1.0 loaded.
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Event group Sheep loaded
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] [Event Trees] Trees v1.0 loaded.
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Event group Trees loaded
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] [Event Weather] Weather v1.0 loaded.
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Event group Weather loaded
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Events loaded: [EXPLOSION, SHEAR, UNSHEAR, SHEARTOGGLE, DYE, TREE, FORCETREE, LIGHTNING, STORM, THUNDER]
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Loaded global config (plugins\OtherDrops\otherdrops-config.yml), keys found: [verbosity, priority, useyetipermissions] (verbosity=EXTREME)
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Loading file: otherdrops-drops.yml
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] No defaults set.2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Loading file: includes/od-goldtools-smelt.yml
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] No defaults set.
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Loading drop: BREAK with {GOLD_AXE=true} on LOG -> COAL
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Loading drop: BREAK with {GOLD_SPADE=true} on SAND -> GLASS
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Loading drop: BREAK with {GOLD_PICKAXE=true} on IRON_ORE -> IRON_INGOT
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Loading drop: BREAK with {GOLD_PICKAXE=true} on GOLD_ORE -> GOLD_INGOT
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Loading drop: BREAK with {GOLD_PICKAXE=true} on GLOWSTONE -> GLOWSTONE
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] YetiPermissions (useyetipermissions) not enabled in config.
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Using Bukkit superperms.
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Hooked into WorldGuard.
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Hooked into MobArena.
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] OtherDrops loaded.
    2011-09-21 00:32:04 [INFO] [OtherDrops:2.0-beta5] Payment method found (iConomy version: 5)
    Code:
    2011-09-21 00:32:19 [INFO] [OtherDrops:2.0-beta5] PerformDrop - checking for potential drops: action = BREAK target = LOG@GENERIC
    2011-09-21 00:32:19 [INFO] [OtherDrops:2.0-beta5] PerformDrop - potential drops found: [BREAK on LOG] tool: PLAYER@SingsoL with GOLD_AXE@4
    2011-09-21 00:32:19 [INFO] [OtherDrops:2.0-beta5] tool agent check : id=GOLD_AXE gettool=GOLD_AXE@4 material=GOLD_AXE id=mat:true
    2011-09-21 00:32:19 [INFO] [OtherDrops:2.0-beta5] Tool match = true - tool=PLAYER@SingsoL with GOLD_AXE@4 tools={GOLD_AXE=true}
    2011-09-21 00:32:19 [INFO] [OtherDrops:2.0-beta5] CustomDrop.matches(): world match failed.
    2011-09-21 00:32:19 [WARNING] [OtherDrops:2.0-beta5] CustomDropEvent.setToString - list.get(0) is null?
    2011-09-21 00:32:19 [WARNING] [OtherDrops:2.0-beta5] CustomDropEvent.setToString - list.get(0) is null?
    2011-09-21 00:32:19 [INFO] [OtherDrops:2.0-beta5] PerformDrop: Drop (BREAK on LOG@GENERIC with PLAYER@SingsoL with GOLD_AXE@4) did not match (BREAK on LOG: GOLD_AXE now drops 1.0-2.0x COAL@COAL with 80.0% chance in worlds  with conditions: ).
    2011-09-21 00:32:19 [INFO] [OtherDrops:2.0-beta5] Leaf decay allowed.
    Code:
    include-files: 
    ##########
    # The plugin will scan through and load these files after loading the main config below.
    # Note: drops from included files will are inclusive and will all be added to the drop list.
    ##########
      - includes/od-fix_undroppables.yml    # fix glass, bookshelf, boat and stairs drops
      - includes/od-goldtools-basic.yml     # allow gold tools chance to get ice, glowstone and grass
      - includes/od-goldtools-smelt.yml     # gold-pickaxe smelts ores to ingots, sand to glass, etc
    #  - includes/od-ore_extraction.yml      # allow ores to be "extracted" - leaving behind the stone
    #  - includes/od-leaf_overhaul.yml       # overhaul leaf drops (apples, cocoa beans, leaves, sticks & a very small chance of golden apple)
    #  - includes/od-playerdeath_zombie.yml # players drop zombies on death
    #  - includes/od-undead_chaos.yml       # the undead shall rise again! Includes players dropping zombies/skeletons
    #  - includes/od-random_examples.yml    # For crazy testing only :) Read through examples before activating.
      - includes/od-dyewool.yml            # Dye wool after placing!
    
    ## Other users overhauls
    #  - includes/overhaul-catballs.yml     # great example/playable config from Catballs (disable "ob" configs before using this one, otherwise you might have too many drops)
    #  - includes/overhaul-zarius.yml       # Zar's messy config (I run this with no other includes, at the moment)
        
    ## Add your files here (alternatively just add your custom drops to the bottom of this file)
    #  - my_custom_file1.yml
    
    
    aliases:
    ##########    
    # add custom YAML aliases here (advanced customisation) - see the wiki for more information
    
    defaults:
    
    
    otherdrops:
    ##########    
    
    Code:
    # Gold tools have a chance to smelt ores (yes, I like chances but you can change to 100% if you want :D
    # by Zarius
    
    defaults:
    
      
    otherdrops:
      LOG: 
        - tool: GOLD_AXE
          drop: COAL
          quantity: 1-2
          chance: 80
      SAND:
        - tool: GOLD_SPADE
          drop: GLASS
          chance: 50
      IRON_ORE:
        - tool: GOLD_PICKAXE
          drop: IRON_INGOT
          chance: 70
      GOLD_ORE:
        - tool: GOLD_PICKAXE
          drop: GOLD_INGOT
          chance: 70
      GLOWSTONE:
        - tool: GOLD_PICKAXE
          drop: GLOWSTONE
          chance: 38
    
    Please help me, before i'm freaking out :D
     
  28. Offline

    Rofang

    Yes! (Edit: Still happening in 1162.)

    Startup: (open)

    CONSOLE: This server is running Craftbukkit version git-Bukkit-0.0.0-1044-g49330f7-b1150jnks (MC: 1.8.1)
    OtherDrops:2.0-beta5: Events node created.
    OtherDrops:2.0-beta5: [Event Explosions] Explosions v1.0 loaded.
    OtherDrops:2.0-beta5: Collecting and loading events
    OtherDrops:2.0-beta5: Event group Explosions loaded
    OtherDrops:2.0-beta5: [Event Sheep] Sheep v1.0 loaded.
    OtherDrops:2.0-beta5: Event group Sheep loaded
    OtherDrops:2.0-beta5: [Event Trees] Trees v1.0 loaded.
    OtherDrops:2.0-beta5: Event group Trees loaded
    OtherDrops:2.0-beta5: [Event Weather] Weather v1.0 loaded.
    OtherDrops:2.0-beta5: Event group Weather loaded
    OtherDrops:2.0-beta5: Events loaded: [EXPLOSION, SHEAR, UNSHEAR, SHEARTOGGLE, DYE, TREE, FORCETREE, LIGHTNING, STORM, THUNDER]
    OtherDrops:2.0-beta5: Loaded global config (plugins\OtherDrops\otherdrops-config.yml), keys found: [priority, usepermissions, verbosity] (verbosity=HIGH)
    OtherDrops:2.0-beta5: Loading file: otherdrops-drops.yml
    OtherDrops:2.0-beta5: Loading file: rofang-drops.yml

    Plugins: AntiPortal, BananaChunk, CommandBook, Flup_p1, Help, HomeSpawnPlus, Log, LogOres, BukkitCompat, MineMail, My Worlds, NoCheat, PermissionsEx, RepairChest, Safe Creeper, WorldEdit, WorldGuard, Modifyworld, Permissions, LWC, OtherDrops, WorldBorder


    Edit #2: Also, I've been having an issue wherein McMyAdmin isn't able to stop my server gracefully. A techie with my hosting service tipped me off to the possibility of this being a plugin's fault, and behold, the problem doesn't happen when I launch without OtherDrops. Maybe this is tied in with the issue I'm having above?
     
  29. Offline

    Zarius

    Dang - I hope I didn't break the world condition - anyone else have this issue? @Singso How many worlds do you have? Can you go to the " Older Downloads" link and try version 2.0-beta4?

    Will try and look into this tonight.

    Hmm, I think that McMyAdmin sometimes hides part of the error messages - do you have access to the raw log file?
     
  30. Offline

    Rofang

    Apparently I do. The things I learn.

    Some bad stuff follows: (open)

    2011-09-20 17:46:13 [INFO] [OtherDrops:2.0-beta5] Loading file: otherdrops-drops.yml
    2011-09-20 17:46:13 [INFO] [OtherDrops:2.0-beta5] Loading file: rofang-drops.yml
    2011-09-20 17:46:13 [WARNING] [OtherDrops:2.0-beta5] Unrecognized target (skipping): WOODEN_DOOR
    2011-09-20 17:46:13 [WARNING] [OtherDrops:2.0-beta5] Unrecognized target (skipping): ANY_DIODE_BLOCK
    2011-09-20 17:46:13 [SEVERE] Error occurred while enabling OtherDrops v2.0-beta5 (Is it up to date?): No enum const class org.bukkit.entity.CreatureType.ANY
    java.lang.IllegalArgumentException: No enum const class org.bukkit.entity.CreatureType.ANY

    at java.lang.Enum.valueOf(Unknown Source)

    at org.bukkit.entity.CreatureType.valueOf(CreatureType.java:7)

    at com.gmail.zariust.otherdrops.subject.CreatureSubject.parse(CreatureSubject.java:128)

    at com.gmail.zariust.otherdrops.OtherDropsConfig.parseTarget(OtherDropsConfig.java:677)

    at com.gmail.zariust.otherdrops.OtherDropsConfig.loadDropsFile(OtherDropsConfig.java:260)

    at com.gmail.zariust.otherdrops.OtherDropsConfig.loadDropsFile(OtherDropsConfig.java:282)

    at com.gmail.zariust.otherdrops.OtherDropsConfig.loadConfig(OtherDropsConfig.java:186)

    at com.gmail.zariust.otherdrops.OtherDropsConfig.load(OtherDropsConfig.java:122)

    at com.gmail.zariust.otherdrops.OtherDrops.onEnable(OtherDrops.java:250)

    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:126)

    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:906)

    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:278)

    at org.bukkit.craftbukkit.CraftServer.loadPlugin(CraftServer.java:173)

    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:156)

    at net.minecraft.server.MinecraftServer.e(MinecraftServer.java:297)

    at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:284)

    at net.minecraft.server.MinecraftServer.init(MinecraftServer.java:152)

    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:348)

    at net.minecraft.server.ThreadServerApplication.run(SourceFile:417)
     
  31. Offline

    cvxx7q

Share This Page