@@ -370,7 +370,7 @@ public int generate(Actor actor, LocalSession session, EditSession editSession,
370370 @ Switch (name = 'r' , desc = "Use the game's coordinate origin" )
371371 boolean useRawCoords ,
372372 @ Switch (name = 'o' , desc = "Use the placement's coordinate origin" )
373- boolean offset ,
373+ boolean offsetPlacement ,
374374 @ Switch (name = 'c' , desc = "Use the selection's center as origin" )
375375 boolean offsetCenter ) throws WorldEditException {
376376
@@ -380,7 +380,7 @@ public int generate(Actor actor, LocalSession session, EditSession editSession,
380380 if (useRawCoords ) {
381381 zero = Vector3 .ZERO ;
382382 unit = Vector3 .ONE ;
383- } else if (offset ) {
383+ } else if (offsetPlacement ) {
384384 zero = session .getPlacementPosition (actor ).toVector3 ();
385385 unit = Vector3 .ONE ;
386386 } else if (offsetCenter ) {
@@ -439,7 +439,7 @@ public int generateBiome(Actor actor, LocalSession session, EditSession editSess
439439 @ Switch (name = 'r' , desc = "Use the game's coordinate origin" )
440440 boolean useRawCoords ,
441441 @ Switch (name = 'o' , desc = "Use the placement's coordinate origin" )
442- boolean offset ,
442+ boolean offsetPlacement ,
443443 @ Switch (name = 'c' , desc = "Use the selection's center as origin" )
444444 boolean offsetCenter ) throws WorldEditException {
445445 final Vector3 zero ;
@@ -448,7 +448,7 @@ public int generateBiome(Actor actor, LocalSession session, EditSession editSess
448448 if (useRawCoords ) {
449449 zero = Vector3 .ZERO ;
450450 unit = Vector3 .ONE ;
451- } else if (offset ) {
451+ } else if (offsetPlacement ) {
452452 zero = session .getPlacementPosition (actor ).toVector3 ();
453453 unit = Vector3 .ONE ;
454454 } else if (offsetCenter ) {
0 commit comments