Skip to content

Commit

Permalink
Merge pull request #404 from doug1234/master
Browse files Browse the repository at this point in the history
 Fixed mistake in previous trap finding fix check in.
  • Loading branch information
doug1234 authored Jul 2, 2020
2 parents 241c452 + ef0f1d4 commit 24b6a13
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 2 deletions.
Binary file modified tpdata/co8infra.dat
Binary file not shown.
Binary file modified tpdata/kotbfixes.dat
Binary file not shown.
Binary file modified tpdata/tpgamefiles.dat
Binary file not shown.
2 changes: 1 addition & 1 deletion tpdatasrc/tpgamefiles/scr/tpModifiers/beguiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def OnQueryFindTraps(attachee, args, evt_obj):
classSpecObj.AddHook(ET_OnSaveThrowLevel, EK_SAVE_FORTITUDE, OnGetSaveThrowFort, ())
classSpecObj.AddHook(ET_OnSaveThrowLevel, EK_SAVE_REFLEX, OnGetSaveThrowReflex, ())
classSpecObj.AddHook(ET_OnSaveThrowLevel, EK_SAVE_WILL, OnGetSaveThrowWill, ())
classSpecObj.AddHook(EK_Q_Critter_Can_Find_Traps, EK_NONE, OnQueryFindTraps, ())
classSpecObj.AddHook(ET_OnD20Query, EK_Q_Critter_Can_Find_Traps, OnQueryFindTraps, ())

### Spell casting
def OnGetBaseCasterLevel(attachee, args, evt_obj):
Expand Down
2 changes: 1 addition & 1 deletion tpdatasrc/tpgamefiles/scr/tpModifiers/scout.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def OnQueryFindTraps(attachee, args, evt_obj):
classSpecObj.AddHook(ET_OnSaveThrowLevel, EK_SAVE_FORTITUDE, OnGetSaveThrowFort, ())
classSpecObj.AddHook(ET_OnSaveThrowLevel, EK_SAVE_REFLEX, OnGetSaveThrowReflex, ())
classSpecObj.AddHook(ET_OnSaveThrowLevel, EK_SAVE_WILL, OnGetSaveThrowWill, ())
classSpecObj.AddHook(EK_Q_Critter_Can_Find_Traps, EK_NONE, OnQueryFindTraps, ())
classSpecObj.AddHook(ET_OnD20Query, EK_Q_Critter_Can_Find_Traps, OnQueryFindTraps, ())

## Scout Specific Feats

Expand Down

0 comments on commit 24b6a13

Please sign in to comment.