Changeset 144 for adventure/thing.py
- Timestamp:
- 04/26/08 19:44:59 (2 years ago)
- Files:
-
- 1 modified
-
adventure/thing.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
adventure/thing.py
r143 r144 113 113 # <narration>text</narration> 114 114 elif action['name'] == 'narration': 115 self.place.broadcast_message(None, params) 115 if target: 116 target.send_message(None, params) 117 else: 118 self.place.broadcast_message(None, params) 116 119 117 120 # <follow [target="actor|self|name"] />
