forked from OpenNeo/impress
hardcode some color-specific items 😬
This commit is contained in:
parent
d6ab0e71b3
commit
bd3b75c675
1 changed files with 11 additions and 3 deletions
|
@ -180,11 +180,19 @@ class Item < ActiveRecord::Base
|
|||
return Color.find_by_name(color.downcase)
|
||||
end
|
||||
|
||||
# HACK: omg I hate this. why can't the Baby Raindorf Hoodie Robe just
|
||||
# contain the standard pattern? >_>
|
||||
if description.include? 'This soft robe is sure to keep your little one warm and toasty.'
|
||||
# HACK: this should probably be a flag on the record instead of
|
||||
# being hardcoded :P
|
||||
if [71893, 76192, 76202].include?(id)
|
||||
return Color.find_by_name('baby')
|
||||
end
|
||||
|
||||
if [76198].include?(id)
|
||||
return Color.find_by_name('mutant')
|
||||
end
|
||||
|
||||
if [75372].include?(id)
|
||||
return Color.find_by_name('maraquan')
|
||||
end
|
||||
end
|
||||
end
|
||||
public
|
||||
|
|
Loading…
Reference in a new issue