Skip to content

Commit

Permalink
(Aegis) align weight with firs
Browse files Browse the repository at this point in the history
  • Loading branch information
ahyangyi committed Oct 14, 2023
1 parent b499884 commit c8aa14a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion industry/cargos/ammonia.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import grf
from industry.lib.cargo import ACargo

the_cargo = ACargo(0x10, b"NH3_", grf.CargoClass.LIQUID | grf.CargoClass.HAZARDOUS)
the_cargo = ACargo(0x10, b"NH3_", grf.CargoClass.LIQUID | grf.CargoClass.HAZARDOUS, weight=10)
2 changes: 1 addition & 1 deletion industry/cargos/explosives.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import grf
from industry.lib.cargo import ACargo

the_cargo = ACargo(0x17, b"BOOM", grf.CargoClass.EXPRESS | grf.CargoClass.PIECE_GOODS)
the_cargo = ACargo(0x17, b"BOOM", grf.CargoClass.EXPRESS | grf.CargoClass.PIECE_GOODS, weight=4)

0 comments on commit c8aa14a

Please sign in to comment.