pets: remove <strong> on "hatching potion"

This commit is contained in:
Tyler Renelle 2013-03-27 12:32:18 -07:00
parent 562634478f
commit 8bad13e5c7

View file

@ -67,7 +67,7 @@ items = module.exports.items =
_.each ['weapon', 'armor', 'head', 'shield'], (key) ->
_.each items[key], (item) -> item.type = key
_.each items.pets, (pet) -> pet.notes = 'Find a <strong>hatching potion</strong> to pour on this egg, and one day it will hatch into a loyal pet.'
_.each items.pets, (pet) -> pet.notes = 'Find a hatching potion to pour on this egg, and one day it will hatch into a loyal pet.'
_.each items.hatchingPotions, (hatchingPotion) -> hatchingPotion.notes = "Pour this on an egg, and it will hatch as a #{hatchingPotion.text} pet."
###