Skip to content

Commit

Permalink
Fix powerup entity count.
Browse files Browse the repository at this point in the history
  • Loading branch information
vikpe committed Jun 28, 2024
1 parent 8146204 commit 4a9cfff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ impl BspInfo {

// powerups
"item_artifact_envirosuit" => e.powerups.biosuit += 1,
"item_artifact_super_damage" => e.powerups.pent += 1,
"item_artifact_invulnerability" => e.powerups.quad += 1,
"item_artifact_super_damage" => e.powerups.quad += 1,
"item_artifact_invulnerability" => e.powerups.pent += 1,
"item_artifact_invisibility" => e.powerups.ring += 1,

// healthpacks
Expand Down

0 comments on commit 4a9cfff

Please sign in to comment.