Changeset 339
- Timestamp:
- 10/22/09 12:37:05 (10 years ago)
- Location:
- trunk/game
- Files:
-
- 2 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/game/run.py
r315 r339 1 #!/usr/bin/ python1 #!/usr/bin/env python 2 2 3 3 # This program is free software: you can redistribute it and/or modify -
trunk/game/run_tests.py
r284 r339 1 #!/usr/bin/ python1 #!/usr/bin/env python 2 2 3 3 # This program is free software: you can redistribute it and/or modify -
trunk/game/scripts/dialogue.py
r317 r339 210 210 command.get("complete_quest")) 211 211 212 elif command.get("meet"): 213 self.callbacks["meet"](state, \ 214 command.get("meet")) 215 216 elif command.get("get_stuff"): 217 self.callbacks["get_stuff"](state, \ 218 command.get("get_stuff")) 219 220 elif command.get("take_stuff"): 221 self.callbacks["take_stuff"](state, \ 222 command.get("take_stuff")) 223 212 224 elif command.get("dialogue"): 213 225 command = command.get("dialogue")
Note: See TracChangeset
for help on using the changeset viewer.