File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -268,17 +268,16 @@ SIYArena >> positionDictionary [
268
268
269
269
{
270
270
#category : #movement ,
271
- #' squeak_changestamp' : ' LK 1/6 /2024 19:28 '
271
+ #' squeak_changestamp' : ' LK 1/12 /2024 23:29 '
272
272
}
273
273
SIYArena >> postMoveBlocksRoutine [
274
274
" This routine gets triggered, after every block has been moved through the moveBlocksDirection method, for example after keyboard input.
275
275
This routine will NOT get triggered, if blocks are moved using the halo."
276
276
277
277
self ruleManager updateRulesInArena: self .
278
-
279
- " check rules for all SIYYou blocks again (sometimes necessary),
280
- direction for queue generation doesn't matter"
281
- (self blockMediator generateQueueForDirection: 1 @0 )
278
+
279
+ " check rules for all blocks"
280
+ (self blockMediator getBlocksOfType: SIYBlock )
282
281
do: [:aBlock | self ruleManager checkRulesFor: aBlock].
283
282
284
283
self undoCaretaker createSnapshotOf: self .
@@ -382,13 +381,13 @@ SIYArena >> scaleFactor: aScaleFactor [
382
381
383
382
{
384
383
#category : #stepping ,
385
- #' squeak_changestamp' : ' KD 1/8 /2024 15:10 '
384
+ #' squeak_changestamp' : ' LK 1/12 /2024 20:25 '
386
385
}
387
386
SIYArena >> slowStepTime [
388
387
" slower step time affects the delay between block movements, while a keyboard
389
388
button is held down"
390
389
391
- ^ 180
390
+ ^ 155
392
391
]
393
392
394
393
{
Original file line number Diff line number Diff line change @@ -538,15 +538,15 @@ SIYBlock >> position: aPoint [
538
538
539
539
{
540
540
#category : #movement ,
541
- #' squeak_changestamp' : ' LK 1/4 /2024 14:30 '
541
+ #' squeak_changestamp' : ' LK 1/12 /2024 23:29 '
542
542
}
543
543
SIYBlock >> postMoveRoutine: aDirection [
544
544
" This routine gets triggered, after the block has been moved using basicMove,
545
545
for example through keyboard inputs. It will NOT get triggered, if the block has been
546
546
moved using the halo."
547
547
548
548
self setTextureForDirection: aDirection.
549
- self ruleManager checkRulesFor: self
549
+ " self ruleManager checkRulesFor: self"
550
550
]
551
551
552
552
{
You can’t perform that action at this time.
0 commit comments