Change unique canonical keys to generic object key
This commit is contained in:
parent
15b72c43c6
commit
bc5d127ce7
3 changed files with 3 additions and 3 deletions
|
|
@ -3,6 +3,6 @@ attributes :id,
|
|||
:position,
|
||||
:uncap_level
|
||||
|
||||
node :character do |c|
|
||||
node :object do |c|
|
||||
partial("characters/base", :object => c.character)
|
||||
end
|
||||
|
|
@ -5,6 +5,6 @@ attributes :id,
|
|||
:position,
|
||||
:uncap_level
|
||||
|
||||
node :summon do |s|
|
||||
node :object do |s|
|
||||
partial('summons/base', :object => s.summon)
|
||||
end
|
||||
|
|
@ -4,6 +4,6 @@ attributes :id,
|
|||
:position,
|
||||
:uncap_level
|
||||
|
||||
node :weapon do |w|
|
||||
node :object do |w|
|
||||
partial("weapons/base", :object => w.weapon)
|
||||
end
|
||||
Loading…
Reference in a new issue