Skip to content

Commit

Permalink
Merge pull request #7 from wito/master
Browse files Browse the repository at this point in the history
Configurable difficulty level, groundwork for a severe rewrite of how names are handled.
  • Loading branch information
TheDarklingWolf committed Jan 15, 2013
2 parents cd4f2b7 + 3d86c51 commit b02078f
Show file tree
Hide file tree
Showing 19 changed files with 1,518 additions and 375 deletions.
6 changes: 5 additions & 1 deletion action.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ std::string action_ident(action_id act)
return "organize";
case ACTION_USE:
return "apply";
case ACTION_USE_WIELDED:
return "apply_wielded";
case ACTION_WEAR:
return "wear";
case ACTION_TAKE_OFF:
Expand Down Expand Up @@ -172,7 +174,7 @@ std::string action_ident(action_id act)
case ACTION_CONSTRUCT:
return "construct";
case ACTION_DISASSEMBLE:
return "disassemble";
return "disassemble";
case ACTION_SLEEP:
return "sleep";
case ACTION_TOGGLE_SAFEMODE:
Expand Down Expand Up @@ -269,6 +271,8 @@ std::string action_name(action_id act)
return "Swap Inventory Letters";
case ACTION_USE:
return "Apply or Use Item";
case ACTION_USE_WIELDED:
return "Apply or Use Wielded Item";
case ACTION_WEAR:
return "Wear Item";
case ACTION_TAKE_OFF:
Expand Down
1 change: 1 addition & 0 deletions action.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ ACTION_PEEK,
ACTION_INVENTORY,
ACTION_ORGANIZE,
ACTION_USE,
ACTION_USE_WIELDED,
ACTION_WEAR,
ACTION_TAKE_OFF,
ACTION_EAT,
Expand Down
100 changes: 0 additions & 100 deletions data/NAMES_FEMALE

This file was deleted.

100 changes: 0 additions & 100 deletions data/NAMES_LAST

This file was deleted.

100 changes: 0 additions & 100 deletions data/NAMES_MALE

This file was deleted.

Loading

0 comments on commit b02078f

Please sign in to comment.