Fixed realm 5

Main house needs to be placed manually for Sumeru realm (module 5) as the resources for defaults in Sumeru realm are missing. Sumeru main house cannot be exited from the door, issue due to the same missing res.
This commit is contained in:
Thoronium
2023-01-28 03:28:58 -07:00
committed by GitHub
parent 51658512c8
commit ccd61e8fd0

View File

@@ -20,11 +20,6 @@ public class ItemUseUnlockHomeModule extends ItemUseInt {
@Override
public boolean postUseItem(UseItemParams params){
// Realm 5 will break all homes, so blacklist for now
if(this.i == 5){
return false;
}
params.player.addRealmList(this.i);
return true;
}