| Index: client/samples/dartcombat/grids.dart
|
| diff --git a/client/samples/dartcombat/grids.dart b/client/samples/dartcombat/grids.dart
|
| index eaa6d8ca1c600c665b53106e832dbe6415b30dc5..bbb317274a2746282f9b66651ae53b2e53f64701 100644
|
| --- a/client/samples/dartcombat/grids.dart
|
| +++ b/client/samples/dartcombat/grids.dart
|
| @@ -49,7 +49,7 @@ class BoatGrid {
|
| } else {
|
| state.hit(x, y);
|
| b.hitCount++;
|
| - return b.sunk ? const [Constants.SUNK, b.length] : const [Constants.HIT];
|
| + return b.sunk ? [Constants.SUNK, b.length] : const [Constants.HIT];
|
| }
|
| }
|
| }
|
|
|