Skip to content

Commit

Permalink
Fix a bug with relic item display
Browse files Browse the repository at this point in the history
  • Loading branch information
axelberardino committed Aug 17, 2019
1 parent f0f9ac2 commit b960975
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generate/generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ func rarityCharacteritics(frameType inventory.FrameType) (string, string, string
case inventory.ProphecyFrameType:
return "Normal", "prophecyPopup", ""
case inventory.RelicFrameType:
return "Relic", "relicPopup", ""
return "Relic", "relicPopup", "doubleLine"
default:
return "", "", ""
}
Expand Down
2 changes: 1 addition & 1 deletion misc/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package misc

// Version of the application.
const Version = "v0.3"
const Version = "v0.4"

0 comments on commit b960975

Please sign in to comment.