From fafcff2c7e1b2bacf12822f9927f40227edd2b49 Mon Sep 17 00:00:00 2001 From: Mark Friedrich Date: Fri, 6 Dec 2019 17:05:19 +0100 Subject: [PATCH] - Fixed 2 missing signature 'type' options for 'group' = "Ore" in Shattered WHs. Added "Shattered Debris Field" and "Shattered Ice Field", #875 --- js/app/conf/signature_type.js | 8 +++++++- js/app/ui/module/system_signature.js | 2 +- public/js/v1.5.5/app/conf/signature_type.js | 8 +++++++- public/js/v1.5.5/app/ui/module/system_signature.js | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/js/app/conf/signature_type.js b/js/app/conf/signature_type.js index 1279b8c9..311c2148 100644 --- a/js/app/conf/signature_type.js +++ b/js/app/conf/signature_type.js @@ -348,6 +348,11 @@ define([], () => { 5: 'Rarified Core Deposit' //* }; + let c13Ore = { + 1: 'Shattered Debris Field', + 2: 'Shattered Ice Field' + }; + // Wormholes ====================================================================================================== // all k-space exits are static or K162 @@ -547,7 +552,8 @@ define([], () => { 1: c12Combat }, 13: { // Shattered WH - 5: c13WH + 5: c13WH, + 6: c13Ore }, 14: { // Drifter Sentinel WH 1: c14Combat diff --git a/js/app/ui/module/system_signature.js b/js/app/ui/module/system_signature.js index 7eea18ab..e590ff3a 100644 --- a/js/app/ui/module/system_signature.js +++ b/js/app/ui/module/system_signature.js @@ -252,7 +252,7 @@ define([ [1, 2, 3, 4, 5, 6].includes(areaId) && [4, 6].includes(groupId) // Gas, Ore ){ - areaIds = [1, 2, 3, 4, 5, 6]; + areaIds = [1, 2, 3, 4, 5, 6, 13]; } return areaIds; diff --git a/public/js/v1.5.5/app/conf/signature_type.js b/public/js/v1.5.5/app/conf/signature_type.js index 1279b8c9..311c2148 100644 --- a/public/js/v1.5.5/app/conf/signature_type.js +++ b/public/js/v1.5.5/app/conf/signature_type.js @@ -348,6 +348,11 @@ define([], () => { 5: 'Rarified Core Deposit' //* }; + let c13Ore = { + 1: 'Shattered Debris Field', + 2: 'Shattered Ice Field' + }; + // Wormholes ====================================================================================================== // all k-space exits are static or K162 @@ -547,7 +552,8 @@ define([], () => { 1: c12Combat }, 13: { // Shattered WH - 5: c13WH + 5: c13WH, + 6: c13Ore }, 14: { // Drifter Sentinel WH 1: c14Combat diff --git a/public/js/v1.5.5/app/ui/module/system_signature.js b/public/js/v1.5.5/app/ui/module/system_signature.js index 7eea18ab..e590ff3a 100644 --- a/public/js/v1.5.5/app/ui/module/system_signature.js +++ b/public/js/v1.5.5/app/ui/module/system_signature.js @@ -252,7 +252,7 @@ define([ [1, 2, 3, 4, 5, 6].includes(areaId) && [4, 6].includes(groupId) // Gas, Ore ){ - areaIds = [1, 2, 3, 4, 5, 6]; + areaIds = [1, 2, 3, 4, 5, 6, 13]; } return areaIds;