Add missing super load call to StackConveyor (#1964)

This commit is contained in:
Patrick 'Quezler' Mounier 2020-05-02 16:13:12 +02:00 committed by GitHub
parent e7c3c3f199
commit 969eb4c57f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,8 @@ public class StackConveyor extends Block implements Autotiler{
@Override
public void load(){
super.load();
for(int i = 0; i < regions.length; i++){
regions[i] = Core.atlas.find(name + "-" + i);
}