Skip to content

Commit

Permalink
Fix actv
Browse files Browse the repository at this point in the history
  • Loading branch information
ShellyHerself committed Nov 11, 2020
1 parent fea194f commit d4fa752
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.9.14]
### Changed
- Fix actor variant tag being read incorrectly.

## [2.9.13]
### Changed
- Fix max reflexive size logic for non meta tags.
Expand Down
4 changes: 2 additions & 2 deletions reclaimer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
# ##############
__author__ = "Sigmmma"
# YYYY.MM.DD
__date__ = "2020.11.05"
__version__ = (2, 9, 13)
__date__ = "2020.11.11"
__version__ = (2, 9, 14)
__website__ = "https://github.com/Sigmmma/reclaimer"
__all__ = (
"animation", "bitmaps", "h2", "h3", "halo_script", "hek", "meta", "misc",
Expand Down
2 changes: 1 addition & 1 deletion reclaimer/hek/defs/actv.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
Struct("burst_geometry",
float_wu("burst_origin_radius"),
float_rad("burst_origin_angle"), # radians
float_wu("burst_return_length"),
from_to_wu("burst_return_length"),
float_rad("burst_return_angle"), # radians
from_to_sec("burst_duration", UNIT_SCALE=sec_unit_scale), # seconds
from_to_sec("burst_separation"),
Expand Down

0 comments on commit d4fa752

Please sign in to comment.