Changes between Version 7 and Version 10 of Ticket #6544


Ignore:
Timestamp:
Jun 28, 2022, 4:20:39 PM (22 months ago)
Author:
Langbart
Comment:

update Aura table

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6544

    • Property Status reopenedclosed
    • Property Resolutionfixed
  • Ticket #6544 – Description

    v7 v10  
    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]  ||    ||
     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]  ||  [26992]  ||
    1010
    1111=== Technologies
     
    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" | xargs -L 1 basename -s .json); do
     28  for a in $(find . -name "*.json" | sed 's|./||;s|.json||'); do
    2929    if [[ $(grep --include=\*.xml -rw ~/0ad/binaries/data/mods/public/simulation -e "$a" | wc -c) -eq 0 ]]; then
    3030      echo "$a"
     
    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 -LEw 'autoResearch.+true' | xargs -L 1 basename -s .json); do
     35  for t in $(find . -name "*.json" | xargs grep -Le 'autoResearch.*true' | sed 's|./||;s|.json||'); do
    3636    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"