### Submitter Checklist
- [x] Make sure you are opening from a topic branch (**/feature/fix/docs/ branch** (right side)) and not your main branch.
- [x] Ensure that the pull request title represents the desired changelog entry.
- [x] New public fields and methods are annotated with `@since TODO`.
- [X] I read and followed the [contribution guidelines](https://github.com/IntellectualSites/.github/blob/main/CONTRIBUTING.md).
Overview
Some flags of the paste and move command are wrong or missing, this PR adds the missing flags and tries to fix the wrong flags.
Description
Move command argument flags
Source: https://github.com/IntellectualSites/FastAsyncWorldEdit/blob/fe626a92e14ec1fb9db38a52895c131c9230443b/worldedit-core/src/main/java/com/sk89q/worldedit/command/RegionCommands.java#L539
-b
includes moving biomes, not excluding them-e
includes moving entities, not excluding them-m
added this flagPaste command argument flags
Source: https://github.com/IntellectualSites/FastAsyncWorldEdit/blob/fe626a92e14ec1fb9db38a52895c131c9230443b/worldedit-core/src/main/java/com/sk89q/worldedit/command/ClipboardCommands.java#L500
-b
includes moving biomes, not excluding them-e
includes moving entities, not excluding them-m
added this flag-n
added this flag