Fix diamond meteor giving blocks + dynamically calculate weight (#1126)
This commit is contained in:
parent
66e3066dc9
commit
a2ceee3218
3 changed files with 14 additions and 10 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue