comparison entities/action.py @ 163:9c82ed72dc9d

Added "None" to the action dict which calls an "no-op" action.
author KarstenBock@gmx.net
date Sat, 19 Nov 2011 16:12:56 +0100
parents ee2d6835d87a
children ed24962cdf5e
comparison
equal deleted inserted replaced
162:ee2d6835d87a 163:9c82ed72dc9d
598 "PickUp":PickUpAction, 598 "PickUp":PickUpAction,
599 "DropFromInventory":DropItemFromContainerAction, 599 "DropFromInventory":DropItemFromContainerAction,
600 "BrewBeer":BrewBeerAction, 600 "BrewBeer":BrewBeerAction,
601 "ExamineContents": ExamineContentsAction, 601 "ExamineContents": ExamineContentsAction,
602 "RunScript": RunScriptAction, 602 "RunScript": RunScriptAction,
603 "None": Action,
603 } 604 }