From 54cdfb81e4838593b4868cd4a3e3b7aeb67af6f9 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 4 Jan 2026 14:44:40 -0800 Subject: [PATCH] return extra field in weapon responses (#203) was being saved but not returned, so frontend always saw it as undefined --- app/blueprints/api/v1/weapon_blueprint.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/blueprints/api/v1/weapon_blueprint.rb b/app/blueprints/api/v1/weapon_blueprint.rb index 4c12cf3..681ff13 100644 --- a/app/blueprints/api/v1/weapon_blueprint.rb +++ b/app/blueprints/api/v1/weapon_blueprint.rb @@ -13,7 +13,7 @@ module Api # Primary information fields :granblue_id, :element, :proficiency, :max_level, :max_skill_level, :max_awakening_level, :limit, :rarity, - :ax, :ax_type, :gacha, :promotions, :forge_order + :ax, :ax_type, :gacha, :promotions, :forge_order, :extra # Series - returns full object with flags if weapon_series is present, fallback to legacy integer field :series do |w|