File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -344,15 +344,15 @@ SIYBlock >> gameBoard [
344344
345345{
346346 #category : #appearance ,
347- #' squeak_changestamp' : ' LK 2/4 /2024 19:47 '
347+ #' squeak_changestamp' : ' KD 2/5 /2024 10:06 '
348348}
349349SIYBlock >> getTextureForDirection: aPoint [
350350
351351 aPoint caseOf: {
352352 [1 @0 ] - > [^ self blockTextureRight].
353353 [- 1 @0 ] - > [^ self blockTextureLeft].
354354 [0 @1 ] - > [^ self blockTextureDown].
355- [0 @( - 1 ) ] - > [^ self blockTextureUp]
355+ [0 @ - 1 ] - > [^ self blockTextureUp]
356356 } otherwise: [^ self blockTexture]
357357]
358358
@@ -576,11 +576,11 @@ SIYBlock >> move: aDirection pushedBy: aBlock [
576576
577577{
578578 #category : #' neighbour sensing' ,
579- #' squeak_changestamp' : ' LK 2/4 /2024 19:50 '
579+ #' squeak_changestamp' : ' KD 2/5 /2024 10:06 '
580580}
581581SIYBlock >> neighborsAbove [
582582
583- ^ self gameBoard getBlocksOnTile: 0 @( - 1 ) + self coords
583+ ^ self gameBoard getBlocksOnTile: 0 @ - 1 + self coords
584584]
585585
586586{
You can’t perform that action at this time.
0 commit comments