diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-09-02 15:11:06 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-09-30 13:49:26 -0700 |
commit | 77563ec532c8b51134c3020fb3c70a8bed8457fb (patch) | |
tree | 51e285a203956681a04b08257fa06f8b113a5981 /tools | |
parent | 0d3df507b4c4fe1dde086cd85a78179c8bcefcf9 (diff) | |
download | tmwa-77563ec532c8b51134c3020fb3c70a8bed8457fb.tar.gz tmwa-77563ec532c8b51134c3020fb3c70a8bed8457fb.tar.bz2 tmwa-77563ec532c8b51134c3020fb3c70a8bed8457fb.tar.xz tmwa-77563ec532c8b51134c3020fb3c70a8bed8457fb.zip |
Rename enum Option to Opt0
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/protocol.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/protocol.py b/tools/protocol.py index 91dbc81..2c3ebce 100755 --- a/tools/protocol.py +++ b/tools/protocol.py @@ -885,7 +885,7 @@ def main(): Little64 = endians_h.network('Little64') SEX = enums_h.native('SEX') - Option = enums_h.native('Option') + Opt0 = enums_h.native('Opt0') EPOS = enums_h.native('EPOS') ItemLook = enums_h.native('ItemLook') @@ -997,7 +997,7 @@ def main(): interval16 = ctx.provided(interval_t, Little16) sex = ctx.enum(SEX, u8) - option = ctx.enum(Option, u16) + option = ctx.enum(Opt0, u16) epos = ctx.enum(EPOS, u16) item_look = ctx.enum(ItemLook, u16) |