(SubgameEntity self, SubgameEntity other, SubgameEntity activator, GameExportsImpl gameExports)
| 132 | public String getID() { return "target_laser_use"; } |
| 133 | |
| 134 | public void use(SubgameEntity self, SubgameEntity other, SubgameEntity activator, GameExportsImpl gameExports) { |
| 135 | self.activator = activator; |
| 136 | if ((self.spawnflags & 1) != 0) |
| 137 | target_laser_off(self); |
| 138 | else |
| 139 | target_laser_on(self, gameExports); |
| 140 | } |
| 141 | }; |
| 142 | |
| 143 | private static EntThinkAdapter target_laser_start = new EntThinkAdapter() { |
nothing calls this directly
no test coverage detected