Fix diamond meteor giving blocks + dynamically calculate weight (#1126)

This commit is contained in:
Nicholas Ignoffo 2017-05-21 12:25:35 -07:00
parent 66e3066dc9
commit a2ceee3218
3 changed files with 14 additions and 10 deletions

View file

@ -23,9 +23,9 @@ public class MeteorRegistry
}
}
public static void registerMeteor(ItemStack stack, List<MeteorComponent> componentList, float explosionStrength, int radius, int maxWeight)
public static void registerMeteor(ItemStack stack, List<MeteorComponent> componentList, float explosionStrength, int radius)
{
Meteor holder = new Meteor(stack, componentList, explosionStrength, radius, maxWeight);
Meteor holder = new Meteor(stack, componentList, explosionStrength, radius);
registerMeteor(stack, holder);
}