Move SwfAsset#override_body_id
to the bottom of the file
This is a console-y method, it's not important enough to be up here!
This commit is contained in:
parent
cf1cdf7e7d
commit
829d960d70
1 changed files with 7 additions and 7 deletions
|
@ -52,13 +52,6 @@ class SwfAsset < ApplicationRecord
|
|||
"#{image_version}"
|
||||
end
|
||||
|
||||
# To manually change the body ID without triggering the usual change to 0,
|
||||
# use this override method.
|
||||
def override_body_id(new_body_id)
|
||||
@body_id_overridden = true
|
||||
self.body_id = new_body_id
|
||||
end
|
||||
|
||||
def as_json(options={})
|
||||
super({
|
||||
only: [:id, :known_glitches],
|
||||
|
@ -179,6 +172,13 @@ class SwfAsset < ApplicationRecord
|
|||
self.manifest_url = parsed_manifest_url.to_s
|
||||
end
|
||||
|
||||
# To manually change the body ID without triggering the usual change to 0,
|
||||
# use this override method. (This is intended for use from the console.)
|
||||
def override_body_id(new_body_id)
|
||||
@body_id_overridden = true
|
||||
self.body_id = new_body_id
|
||||
end
|
||||
|
||||
def self.from_biology_data(body_id, data)
|
||||
remote_id = data[:part_id].to_i
|
||||
swf_asset = SwfAsset.find_or_initialize_by type: 'biology',
|
||||
|
|
Loading…
Reference in a new issue