Change unique canonical keys to generic object key

This commit is contained in:
Justin Edmund 2022-02-23 13:49:27 -08:00
parent 15b72c43c6
commit bc5d127ce7
3 changed files with 3 additions and 3 deletions

View file

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

View file

@ -5,6 +5,6 @@ attributes :id,
:position,
:uncap_level
node :summon do |s|
node :object do |s|
partial('summons/base', :object => s.summon)
end

View file

@ -4,6 +4,6 @@ attributes :id,
:position,
:uncap_level
node :weapon do |w|
node :object do |w|
partial("weapons/base", :object => w.weapon)
end