-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #86 from DrInfy/remove_deprecated_acts
Remove deprecated acts
- Loading branch information
Showing
29 changed files
with
24 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
from .archon import Archon, ActArchon | ||
from .archon import Archon | ||
from .artosis_pylon import ArtosisPylon | ||
from .auto_pylon import AutoPylon | ||
from .chrono_any_tech import ChronoAnyTech | ||
from .chrono_tech import ChronoTech | ||
from .chrono_unit import ChronoUnit, ChronoUnitProduction | ||
from .defensive_cannons import DefensiveCannons, ActDefensiveCannons | ||
from .gate_unit import GateUnit | ||
from .chrono_unit import ChronoUnit | ||
from .defensive_cannons import DefensiveCannons | ||
from .protoss_unit import ProtossUnit | ||
from .restore_power import RestorePower | ||
from .robo_unit import RoboUnit | ||
from .star_unit import StarUnit | ||
from .warp_unit import WarpUnit | ||
from .chrono_building import ChronoBuilding |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
from .require_base import RequireBase | ||
from .require_custom import RequireCustom | ||
from .any import Any, RequiredAny | ||
from .all import All, RequiredAll | ||
from .gas import Gas, RequiredGas | ||
from .minerals import Minerals, RequiredMinerals | ||
from .supply import Supply, RequiredSupply, SupplyType | ||
from .supply_left import SupplyLeft, RequiredSupplyLeft | ||
from .tech_ready import TechReady, RequiredTechReady | ||
from .any import Any | ||
from .all import All | ||
from .gas import Gas | ||
from .minerals import Minerals | ||
from .supply import Supply, SupplyType | ||
from .supply_left import SupplyLeft | ||
from .tech_ready import TechReady | ||
from .time import Time, RequiredTime | ||
from .unit_exists import UnitExists, RequiredUnitExists | ||
from .enemy_unit_exists import EnemyUnitExists, RequiredEnemyUnitExists | ||
from .unit_ready import UnitReady, RequiredUnitReady | ||
from .enemy_unit_exists_after import EnemyUnitExistsAfter, RequiredEnemyUnitExistsAfter | ||
from .enemy_building_exists import EnemyBuildingExists, RequiredEnemyBuildingExists | ||
from .unit_exists import UnitExists | ||
from .enemy_unit_exists import EnemyUnitExists | ||
from .unit_ready import UnitReady | ||
from .enemy_unit_exists_after import EnemyUnitExistsAfter | ||
from .enemy_building_exists import EnemyBuildingExists | ||
from .count import Count | ||
from .methods import merge_to_require | ||
from .once import Once |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters