File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -201,8 +201,9 @@ export const commands = commandList({
201201 if ( args . action ) outputFail ( `There is no recorded history for the selected region matching the provided filters.` ) ;
202202 else outputFail ( `There is no recorded history for the selected region.` ) ;
203203 }
204- if ( limitTiles == amount )
205- output ( `Displaying first ${ limitTiles } entries. To show other entries, increase the limit or select a smaller area.` ) ;
204+ if ( limitTiles == amount ) {
205+ output ( `Displaying first ${ limitTiles } entries. To show other entries, increase the limit or select a smaller area.` )
206+ }
206207 }
207208 const p1 = cachedPointMap [ sender . uuid ] ;
208209 if ( ! p1 ) {
@@ -215,6 +216,8 @@ export const commands = commandList({
215216 const height = Math . abs ( p1 [ 1 ] - p2 [ 1 ] ) ;
216217 if ( width > 50 || height > 50 ) fail ( "Selection too large: width/height cannot be more than 50." ) ;
217218 handleArea ( p1 , p2 ) ;
219+ p1 = null ;
220+ p2 = null ;
218221 if ( ! args . persist ) handleTaps ( "off" ) ;
219222 }
220223 } ,
You can’t perform that action at this time.
0 commit comments