v0.3.0c: refactored plants to match the structure of new traps.

This commit is contained in:
Evan Debenham
2015-06-06 16:00:50 -04:00
parent 4ac3ac817c
commit c601027f27
15 changed files with 46 additions and 37 deletions
@@ -819,7 +819,7 @@ public abstract class Level implements Bundlable {
Plant plant = plants.get( cell );
if (plant != null) {
plant.activate( ch );
plant.trigger();
}
}
@@ -850,7 +850,7 @@ public abstract class Level implements Bundlable {
Plant plant = plants.get( cell );
if (plant != null) {
plant.activate( mob );
plant.trigger();
}
}