|
@@ -16,7 +16,7 @@ class ActionStand extends Action {
|
|
|
return "stand up"
|
|
|
}
|
|
|
|
|
|
- public checkStand = ActionStand.check.createAndAddRule({
|
|
|
+ public static checkStand = ActionStand.check.createAndAddRule({
|
|
|
name : "Stand - Can stand?",
|
|
|
code : (rulebook) => {
|
|
|
// TODO: Check if being held down
|
|
@@ -24,7 +24,7 @@ class ActionStand extends Action {
|
|
|
}
|
|
|
});
|
|
|
|
|
|
- public carryStand = ActionStand.carry.createAndAddRule({
|
|
|
+ public static carryStand = ActionStand.carry.createAndAddRule({
|
|
|
name : "Stand - Rise up!",
|
|
|
code : (runner : RulebookRunner<ActionStand>) => {
|
|
|
let actor = runner.noun.actor;
|