Changes between Version 4 and Version 7 of Ticket #6544


Ignore:
Timestamp:
Jun 27, 2022, 8:49:24 AM (22 months ago)
Author:
Langbart
Comment:

han_hero_wei_qing_3 moved from the tech to the aura table.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6544

    • Property Patch Phab:D4663Phab:D4663 Phab:D4725
  • Ticket #6544 – Description

    v4 v7  
    77||~~[https://code.wildfiregames.com/source/0ad/browse/ps/trunk/binaries/data/mods/public/simulation/data/auras/units/han_minister_cost.json units/han_minister_cost]~~||  unused in the main game  ||  [26900]  ||
    88||~~[https://code.wildfiregames.com/source/0ad/browse/ps/trunk/binaries/data/mods/public/simulation/data/auras/units/elephant_worker.json units/elephant_worker]~~||  [26898]  ||  [26900]  ||
     9|| [https://code.wildfiregames.com/source/0ad/browse/ps/trunk/binaries/data/mods/public/simulation/data/auras/units/heroes/han_hero_wei_qing_3.json han_hero_wei_qing_3.json] ||  [26980]  ||    ||
    910
    1011=== Technologies
     
    1415|| ~~[https://code.wildfiregames.com/source/0ad/browse/ps/trunk/binaries/data/mods/public/simulation/data/technologies/upgrade_rank_elite_crossbow.json upgrade_rank_elite_crossbow]~~ ||  unused in the main game  ||  [26900]  ||
    1516|| ~~[https://code.wildfiregames.com/source/0ad/browse/ps/trunk/binaries/data/mods/public/simulation/data/technologies/pair_unlock_arrows_type.json pair_unlock_arrows_type]~~ ||  [26469]  ||  [26900]  ||
    16 || [https://code.wildfiregames.com/source/0ad/browse/ps/trunk/binaries/data/mods/public/simulation/data/auras/units/heroes/han_hero_wei_qing_3.json han_hero_wei_qing_3.json] ||  [26980]  ||    ||
    1717
    1818
     
    2626  cd ~/0ad/binaries/data/mods/public/simulation/data/auras || return 1
    2727  printf "\e[1;97mList unused Auras:\e[0m\n"
    28   for a in $(find . -name "*.json" | grep -oe '[A-Za-z0-9_].*' | sed 's|.json||'); do
    29     if [[ $(grep --include=\*.xml -rnw ~/0ad/binaries/data/mods/public/simulation -e "$a" | wc -c) -eq 0 ]]; then
     28  for a in $(find . -name "*.json" | xargs -L 1 basename -s .json); do
     29    if [[ $(grep --include=\*.xml -rw ~/0ad/binaries/data/mods/public/simulation -e "$a" | wc -c) -eq 0 ]]; then
    3030      echo "$a"
    3131    fi
     
    3333  cd ~/0ad/binaries/data/mods/public/simulation/data/technologies || return 1
    3434  printf "\e[1;97m\nList unused Technologies:\e[0m\n"
    35   for t in $(find . -name "*.json" | xargs grep -Le 'autoResearch.*true' | grep -oe '[A-Za-z0-9_].*' | sed 's|.json||'); do
    36     if [[ $(grep --include={*.xml,test_Researcher.js,pair_unlock*.json} -rnw ~/0ad/binaries/data/mods/public/simulation -e "$t" | wc -c) -eq 0 ]]; then
     35  for t in $(find . -name "*.json" | xargs grep -LEw 'autoResearch.+true' | xargs -L 1 basename -s .json); do
     36    if [[ $(grep --include={*.xml,test_Researcher.js,pair_unlock*.json} -rw ~/0ad/binaries/data/mods/public/simulation -e "$t" | wc -c) -eq 0 ]]; then
    3737      echo "$t"
    3838    fi