EngageDecoupler now using new assignment function

This commit is contained in:
Stephan Richter
2021-01-16 01:24:45 +01:00
parent fc95444fd8
commit bf234e19bb
4 changed files with 14 additions and 9 deletions

View File

@@ -133,9 +133,7 @@ public class WaitForContact extends ActionList {
Tile tile = BaseClass.get(new Id(params.get(CONTACT)));
if (tile instanceof Contact) {
contact = (Contact) tile;
} else {
return t("Clicked tile is not a {}!",t("contact"));
}
} else return t("Clicked tile is not a {}!",t("contact"));
}
if (params.containsKey(TIMEOUT)) timeout = Integer.parseInt(params.get(TIMEOUT));
return super.update(params);