1 module switchExit is "switch" "Exit";
9 // setup actor properties
10 public void initialize (Actor me) {
15 public void think (Actor me) {
21 me.atm = 0; // just in case
23 auto toucher = me.switchWhoTouched();
24 if (toucher && toucher.isPlayer) {
25 me.atm = 9; // cooldown time
26 gactLevelExit(me.switchGetD());