diff options
| author | jacob1 <jfu614@gmail.com> | 2012-10-11 22:39:58 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-10-26 14:11:59 (GMT) |
| commit | c58a3fb2dc8afe4ce3dbca290afddd4fd906dbb5 (patch) | |
| tree | 56a1097b42aed728ab88e46255b6baa53bcd3e0e /src/simulation/Simulation.cpp | |
| parent | b84460d79b35e3e410f9d5ee2cec93d7babc424f (diff) | |
| download | powder-c58a3fb2dc8afe4ce3dbca290afddd4fd906dbb5.zip powder-c58a3fb2dc8afe4ce3dbca290afddd4fd906dbb5.tar.gz | |
TSNS doesn't detect things with an equal temp (fixes detecting wires)
Diffstat (limited to 'src/simulation/Simulation.cpp')
| -rw-r--r-- | src/simulation/Simulation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simulation/Simulation.cpp b/src/simulation/Simulation.cpp index c87f16a..023d90c 100644 --- a/src/simulation/Simulation.cpp +++ b/src/simulation/Simulation.cpp @@ -2933,7 +2933,7 @@ int Simulation::create_part(int p, int x, int y, int tv) case PT_DTEC: parts[i].tmp2 = 2; case PT_TSNS: - parts[i].tmp2 = 1; + parts[i].tmp2 = 2; break; default: if (t==PT_FIGH) |
