Expose uncap_level in GridObject templates

This commit is contained in:
Justin Edmund 2022-02-01 03:29:37 -08:00
parent 66f281714b
commit 4633f0e531
3 changed files with 6 additions and 3 deletions

View file

@ -1,6 +1,7 @@
attributes :id,
:party_id,
:position
:position,
:uncap_level
node :character do |c|
partial("characters/base", :object => c.character)

View file

@ -2,7 +2,8 @@ attributes :id,
:party_id,
:main,
:friend,
:position
:position,
:uncap_level
node :summon do |s|
partial('summons/base', :object => s.summon)

View file

@ -1,7 +1,8 @@
attributes :id,
:party_id,
:mainhand,
:position
:position,
:uncap_level
node :weapon do |w|
partial("weapons/base", :object => w.weapon)