Sign in to follow this  
polarbear

make wool drop in your inventory

Recommended Posts

When shearing sheep please allow the wool to drop in your inventory, and not the ground. 

 

WU code seems like it should, but none the less. This change would be greatly appreciated by all sheep shearers . 

Spoiler

  {
          ItemTemplate woolTemplate = ItemTemplateFactory.getInstance().getTemplate(921);
          Item wool = ItemFactory.createItem(921, ql, (byte)69, act
            .getRarity(), null);
          wool.setLastOwnerId(performer.getWurmId());
          wool.setWeight(numberOfWoolProduced * woolTemplate.getWeightGrams(), true);
          
          wool.setPos(target.getPosX(), target.getPosY(), target.getPositionZ() + target.getAltOffZ(), target
            .getStatus().getRotation(), target.getStatus().getBridgeId());
          try
          {
            Zone z = Zones.getZone((int)target.getPosX() >> 2, (int)target.getPosY() >> 2, target
              .isOnSurface());
            z.addItem(wool);
            source.setDamage(source.getDamage() + 0.0015F * source.getDamageModifier());
          }
          catch (NoSuchZoneException e)
          {
            logger.log(Level.WARNING, e.getMessage(), e);
            performer.getInventory().insertItem(wool, true);

 

Share this post


Link to post
Share on other sites

we're never happy are we.
first we want dirt to pile up on its own like what rock does, THEN we want wool to appear in the inventory, like what dirt does.

+1

Share this post


Link to post
Share on other sites

Sheepishly giving a +1 here.

 

Wool you please put that in my backpack instead of on the floor?

Share this post


Link to post
Share on other sites

When you shear a sheep in real life, it doesn't all magically fit into your hands while you shear. You guys are nuts.

No, you will keep picking it up off the floor and YOU WILL LIKE IT! :)

Share this post


Link to post
Share on other sites
3 minutes ago, Roushi said:

When you shear a sheep in real life, it doesn't all magically fit into your hands while you shear. You guys are nuts.

No, you will keep picking it up off the floor and YOU WILL LIKE IT! :)

This isn't real life, this is wurm. Welcome to the world of WOGIC. Because it just makes sense in wurm.

Edited by polarbear

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this