Skip to content

Commit

Permalink
Removed 2 old maps + modular weapon sprites
Browse files Browse the repository at this point in the history
  • Loading branch information
Slotterleet committed Apr 20, 2024
1 parent aea1824 commit ec1dda9
Show file tree
Hide file tree
Showing 32 changed files with 2 additions and 6 deletions.
Binary file removed res/maps/beginning.msav
Binary file not shown.
Binary file removed res/maps/siloTerminal.msav
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added res/sprites/units/weapons/modular/shotgun-mount1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/sprites/units/weapons/modular/shotgun-mount2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added res/sprites/units/weapons/modular/shotgun-mount3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed res/sprites/units/weapons/standard-weapon2.png
Diff not rendered.
Binary file removed res/sprites/units/weapons/standard-weapon5-heat.png
Diff not rendered.
Binary file removed res/sprites/units/weapons/standard-weapon5.png
Diff not rendered.
8 changes: 2 additions & 6 deletions src/fos/type/content/WeaponSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,17 +47,13 @@ public WeaponSet(String name, Seq<Ability> abilities) {
@Override
public void init() {
super.init();

for (Weapon weapon : weapons)
weapon.init();
weapons.each(Weapon::init);
}

@Override
public void load() {
super.load();

for (Weapon weapon : weapons)
weapon.load();
weapons.each(Weapon::load);

fullIcon = uiIcon = weapons.first().region;
}
Expand Down

0 comments on commit ec1dda9

Please sign in to comment.