Expose uncap_level in GridObject templates
This commit is contained in:
parent
66f281714b
commit
4633f0e531
3 changed files with 6 additions and 3 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
attributes :id,
|
attributes :id,
|
||||||
:party_id,
|
:party_id,
|
||||||
:position
|
:position,
|
||||||
|
:uncap_level
|
||||||
|
|
||||||
node :character do |c|
|
node :character do |c|
|
||||||
partial("characters/base", :object => c.character)
|
partial("characters/base", :object => c.character)
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,8 @@ attributes :id,
|
||||||
:party_id,
|
:party_id,
|
||||||
:main,
|
:main,
|
||||||
:friend,
|
:friend,
|
||||||
:position
|
:position,
|
||||||
|
:uncap_level
|
||||||
|
|
||||||
node :summon do |s|
|
node :summon do |s|
|
||||||
partial('summons/base', :object => s.summon)
|
partial('summons/base', :object => s.summon)
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,8 @@
|
||||||
attributes :id,
|
attributes :id,
|
||||||
:party_id,
|
:party_id,
|
||||||
:mainhand,
|
:mainhand,
|
||||||
:position
|
:position,
|
||||||
|
:uncap_level
|
||||||
|
|
||||||
node :weapon do |w|
|
node :weapon do |w|
|
||||||
partial("weapons/base", :object => w.weapon)
|
partial("weapons/base", :object => w.weapon)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue