mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 08:14:23 +01:00
Initialize the saddlebags and witch hat even though they haven't been ported yet
This commit is contained in:
parent
f4d1b0ab69
commit
82d107ffc5
2 changed files with 7 additions and 0 deletions
|
@ -33,6 +33,10 @@ public class SaddleBags extends AbstractGear {
|
|||
|
||||
private IModel model;
|
||||
|
||||
public SaddleBags() {
|
||||
init(0, 0);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init(ModelContext context) {
|
||||
strap = context.findByName("strap");
|
||||
|
|
|
@ -17,6 +17,9 @@ public class WitchHat extends AbstractGear implements IStackable {
|
|||
|
||||
private ModelPart witchHat;
|
||||
|
||||
public WitchHat() {
|
||||
init(0, 0);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void init(ModelContext context) {
|
||||
|
|
Loading…
Reference in a new issue