Skip to content

Commit

Permalink
fix wacky pet text
Browse files Browse the repository at this point in the history
  • Loading branch information
phillipthelen committed Sep 25, 2024
1 parent 235618f commit 82a03cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion HabitRPG/Views/PetHatchingDialog.swift
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class PetHatchingAlertController: HabiticaAlertController {
}

private func setText(item: PetStableItem, eggText: String, potionText: String) {
if item.canRaise || item.pet?.type == "special" {
if item.canRaise || item.pet?.type == "special" || item.pet?.type == "wacky" {
title = L10n.hatchPet
petView.setImagewith(name: "stable_Pet-\(item.pet?.key ?? "")-outline")
if eggCount == 0 && potionCount == 0 {
Expand Down

0 comments on commit 82a03cc

Please sign in to comment.