Class MultipleActions

java.lang.Object
games.stendhal.server.entity.npc.action.MultipleActions
All Implemented Interfaces:
ChatAction, PostTransitionAction

@Dev(category=IGNORE) public class MultipleActions extends Object implements ChatAction
executes a list of actions in the order they have been added. It calls fire() of each action added, when its own fire() is called.
  • Constructor Details

    • MultipleActions

      public MultipleActions(ChatAction... action)
      Creates a new MultipleActions.
      Parameters:
      action - action to execute
    • MultipleActions

      public MultipleActions(List<ChatAction> actions)
      Creates a new MultipleActions.
      Parameters:
      actions - list of actions to execute
  • Method Details