File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/scala/li/cil/oc/client Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ object Sound {
172
172
}
173
173
}
174
174
175
- private class StopCommand (tileEntity : TileEntity ) extends Command (0 , tileEntity) {
175
+ private class StopCommand (tileEntity : TileEntity ) extends Command (System .currentTimeMillis() + 1 , tileEntity) {
176
176
override def apply () {
177
177
sources.synchronized {
178
178
sources.remove(tileEntity) match {
@@ -189,7 +189,7 @@ object Sound {
189
189
}
190
190
}
191
191
192
- private class UpdatePositionCommand (tileEntity : TileEntity ) extends Command (0 , tileEntity) {
192
+ private class UpdatePositionCommand (tileEntity : TileEntity ) extends Command (System .currentTimeMillis() , tileEntity) {
193
193
override def apply () {
194
194
sources.synchronized {
195
195
sources.get(tileEntity) match {
You can’t perform that action at this time.
0 commit comments