model/renegado.rb 1 location
|
@@ 154-157 (lines=4) @@
|
| 151 |
|
Pet.new(familiar) if familiar |
| 152 |
|
end |
| 153 |
|
|
| 154 |
|
def gremio |
| 155 |
|
prof = profesions.find { |p| p.id == profesion['id'] } |
| 156 |
|
Profesion.new(profesion.merge(name: prof.name)) |
| 157 |
|
end |
| 158 |
|
|
| 159 |
|
def baratijas |
| 160 |
|
miscelaneas.map { |m| Miscelanea.new(m) } if miscelaneas |
model/hero.rb 1 location
|
@@ 169-172 (lines=4) @@
|
| 166 |
|
Pet.new(familiar) if familiar |
| 167 |
|
end |
| 168 |
|
|
| 169 |
|
def gremio |
| 170 |
|
prof = profesions.find { |p| p.id == profesion['id'] } |
| 171 |
|
Profesion.new(profesion.merge(name: prof.name)) |
| 172 |
|
end |
| 173 |
|
|
| 174 |
|
def baratijas |
| 175 |
|
miscelaneas.map { |m| Miscelanea.new(m) } if miscelaneas |