Skip to content

Commit

Permalink
Update TileEntityMachineSatDock.java
Browse files Browse the repository at this point in the history
Just more tektite not the rest
  • Loading branch information
Alcatergit committed Feb 15, 2024
1 parent 19817d4 commit 93cf57f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public void update(){
}
}
if(sat != null && sat instanceof SatelliteHorizons) {
delay = 10 * 30 * 1000; //5min due to tektite rarity, was right a few commits ago

SatelliteHorizons gerald = (SatelliteHorizons)sat;

if(gerald.lastOp + delay < System.currentTimeMillis()) {
Expand Down Expand Up @@ -217,8 +217,8 @@ private void unloadTheCargo(WeightedRandomObject[] cargo){
private WeightedRandomObject[] cargoGerald = new WeightedRandomObject[] {
new WeightedRandomObject(new ItemStack(ModItems.powder_meteorite, 12), 128),
new WeightedRandomObject(new ItemStack(ModItems.powder_plutonium, 4), 64),
new WeightedRandomObject(new ItemStack(ModItems.powder_combine_steel, 6), 64),
new WeightedRandomObject(new ItemStack(ModItems.powder_tektite, 8), 32),
new WeightedRandomObject(new ItemStack(ModItems.powder_combine_steel, 6), 64),
new WeightedRandomObject(new ItemStack(ModItems.powder_tektite, 16), 32),
new WeightedRandomObject(new ItemStack(ModItems.powder_tantalium, 1), 16),
new WeightedRandomObject(new ItemStack(ModItems.powder_schrabidium, 1), 8),
new WeightedRandomObject(new ItemStack(ModItems.powder_bismuth, 1), 4),
Expand Down

0 comments on commit 93cf57f

Please sign in to comment.