Add excite action

This commit is contained in:
Stubenhocker1399
2019-09-18 23:08:20 +02:00
parent f246d9279e
commit ba2b31c748
6 changed files with 18 additions and 4 deletions
+2 -1
View File
@@ -1093,6 +1093,7 @@ export const enum Action {
SwitchToolRev,
SwitchToPlaceTool,
SwitchToTileTool,
Excite,
}
export const enum InfoFlags {
@@ -1103,7 +1104,7 @@ export const enum InfoFlags {
}
export function isExpressionAction(action: Action) {
return action === Action.Yawn || action === Action.Laugh || action === Action.Sneeze;
return action === Action.Yawn || action === Action.Laugh || action === Action.Sneeze || action === Action.Excite;
}
export interface EditorPlaceAction {