├── .gitignore ├── .vscode └── settings.json ├── README.md ├── actions ├── Action.js ├── LimitedAction.js └── loaders │ ├── _import_all.js │ ├── _import_limited.js │ ├── _template.js │ ├── apply_inventory_layout.js │ ├── apply_potion_effect.js │ ├── balance_player_team.js │ ├── cancel_event.js │ ├── change_global_stat.js │ ├── change_health.js │ ├── change_hunger_level.js │ ├── change_max_health.js │ ├── change_player_group.js │ ├── change_player_stat.js │ ├── change_team_stat.js │ ├── change_variable.js │ ├── change_velocity.js │ ├── clear_all_potion_effects.js │ ├── close_menu.js │ ├── conditional.js │ ├── display_action_bar.js │ ├── display_menu.js │ ├── display_title.js │ ├── drop_item.js │ ├── enchant_held_item.js │ ├── exit.js │ ├── fail_parkour.js │ ├── full_heal.js │ ├── give_experience_levels.js │ ├── give_item.js │ ├── go_to_house_spawn.js │ ├── kill_player.js │ ├── launch_to_target.js │ ├── parkour_checkpoint.js │ ├── pause_execution.js │ ├── play_sound.js │ ├── random_action.js │ ├── remove_item.js │ ├── reset_inventory.js │ ├── send_a_chat_message.js │ ├── send_to_lobby.js │ ├── set_compass_target.js │ ├── set_gamemode.js │ ├── set_player_team.js │ ├── set_player_time.js │ ├── set_player_weather.js │ ├── teleport_player.js │ ├── toggle_nametag_display.js │ ├── trigger_function.js │ └── use_remove_held_item.js ├── api ├── checkVersion.js ├── hostname.js ├── index.js └── loadAction.js ├── assets └── red-arrow.png ├── commands ├── dataValueCommand.js ├── housingEditorCommand.js ├── index.js ├── itemCommands.js ├── linkAccountCommand.js ├── loadItemCommand.js ├── locationCommand.js ├── npcListCommand.js ├── protoolsCommand.js ├── selfStatCommand.js ├── setCommand.js ├── sixSideCommand.js ├── tpPosCommands.js └── upCommand.js ├── config.toml ├── gui ├── LoadActionGUI.js ├── Navigator.js ├── Queue.js ├── SearchHouseGUI.js └── components │ ├── Button.js │ ├── Input.js │ └── components.js ├── index.js ├── metadata.json ├── socket ├── connection.js └── dependencies │ ├── engine.io-client-2.0.0.jar │ ├── json-20090211.jar │ ├── okhttp-3.12.12.jar │ ├── okio-1.15.0.jar │ └── socket.io-client-2.0.1.jar ├── utils ├── config.js ├── createItemStack.js ├── getEnchantment.js ├── getItemFromNBT.js ├── getPotionEffect.js ├── inputAnvil.js └── loadItemstack.js └── worldedit ├── blockListUtil.js ├── blocklist.json ├── index.js ├── selectionAddons.js └── selectionInAir.js /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode 2 | README.md 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/README.md -------------------------------------------------------------------------------- /actions/Action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/Action.js -------------------------------------------------------------------------------- /actions/LimitedAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/LimitedAction.js -------------------------------------------------------------------------------- /actions/loaders/_import_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/_import_all.js -------------------------------------------------------------------------------- /actions/loaders/_import_limited.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/_import_limited.js -------------------------------------------------------------------------------- /actions/loaders/_template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/_template.js -------------------------------------------------------------------------------- /actions/loaders/apply_inventory_layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/apply_inventory_layout.js -------------------------------------------------------------------------------- /actions/loaders/apply_potion_effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/apply_potion_effect.js -------------------------------------------------------------------------------- /actions/loaders/balance_player_team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/balance_player_team.js -------------------------------------------------------------------------------- /actions/loaders/cancel_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/cancel_event.js -------------------------------------------------------------------------------- /actions/loaders/change_global_stat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/change_global_stat.js -------------------------------------------------------------------------------- /actions/loaders/change_health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/change_health.js -------------------------------------------------------------------------------- /actions/loaders/change_hunger_level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/change_hunger_level.js -------------------------------------------------------------------------------- /actions/loaders/change_max_health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/change_max_health.js -------------------------------------------------------------------------------- /actions/loaders/change_player_group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/change_player_group.js -------------------------------------------------------------------------------- /actions/loaders/change_player_stat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/change_player_stat.js -------------------------------------------------------------------------------- /actions/loaders/change_team_stat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/change_team_stat.js -------------------------------------------------------------------------------- /actions/loaders/change_variable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/change_variable.js -------------------------------------------------------------------------------- /actions/loaders/change_velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/change_velocity.js -------------------------------------------------------------------------------- /actions/loaders/clear_all_potion_effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/clear_all_potion_effects.js -------------------------------------------------------------------------------- /actions/loaders/close_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/close_menu.js -------------------------------------------------------------------------------- /actions/loaders/conditional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/conditional.js -------------------------------------------------------------------------------- /actions/loaders/display_action_bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/display_action_bar.js -------------------------------------------------------------------------------- /actions/loaders/display_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/display_menu.js -------------------------------------------------------------------------------- /actions/loaders/display_title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/display_title.js -------------------------------------------------------------------------------- /actions/loaders/drop_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/drop_item.js -------------------------------------------------------------------------------- /actions/loaders/enchant_held_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/enchant_held_item.js -------------------------------------------------------------------------------- /actions/loaders/exit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/exit.js -------------------------------------------------------------------------------- /actions/loaders/fail_parkour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/fail_parkour.js -------------------------------------------------------------------------------- /actions/loaders/full_heal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/full_heal.js -------------------------------------------------------------------------------- /actions/loaders/give_experience_levels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/give_experience_levels.js -------------------------------------------------------------------------------- /actions/loaders/give_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/give_item.js -------------------------------------------------------------------------------- /actions/loaders/go_to_house_spawn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/go_to_house_spawn.js -------------------------------------------------------------------------------- /actions/loaders/kill_player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/kill_player.js -------------------------------------------------------------------------------- /actions/loaders/launch_to_target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/launch_to_target.js -------------------------------------------------------------------------------- /actions/loaders/parkour_checkpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/parkour_checkpoint.js -------------------------------------------------------------------------------- /actions/loaders/pause_execution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/pause_execution.js -------------------------------------------------------------------------------- /actions/loaders/play_sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/play_sound.js -------------------------------------------------------------------------------- /actions/loaders/random_action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/random_action.js -------------------------------------------------------------------------------- /actions/loaders/remove_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/remove_item.js -------------------------------------------------------------------------------- /actions/loaders/reset_inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/reset_inventory.js -------------------------------------------------------------------------------- /actions/loaders/send_a_chat_message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/send_a_chat_message.js -------------------------------------------------------------------------------- /actions/loaders/send_to_lobby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/send_to_lobby.js -------------------------------------------------------------------------------- /actions/loaders/set_compass_target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/set_compass_target.js -------------------------------------------------------------------------------- /actions/loaders/set_gamemode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/set_gamemode.js -------------------------------------------------------------------------------- /actions/loaders/set_player_team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/set_player_team.js -------------------------------------------------------------------------------- /actions/loaders/set_player_time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/set_player_time.js -------------------------------------------------------------------------------- /actions/loaders/set_player_weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/set_player_weather.js -------------------------------------------------------------------------------- /actions/loaders/teleport_player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/teleport_player.js -------------------------------------------------------------------------------- /actions/loaders/toggle_nametag_display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/toggle_nametag_display.js -------------------------------------------------------------------------------- /actions/loaders/trigger_function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/trigger_function.js -------------------------------------------------------------------------------- /actions/loaders/use_remove_held_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/actions/loaders/use_remove_held_item.js -------------------------------------------------------------------------------- /api/checkVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/api/checkVersion.js -------------------------------------------------------------------------------- /api/hostname.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/api/hostname.js -------------------------------------------------------------------------------- /api/index.js: -------------------------------------------------------------------------------- 1 | import "./checkVersion"; 2 | -------------------------------------------------------------------------------- /api/loadAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/api/loadAction.js -------------------------------------------------------------------------------- /assets/red-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/assets/red-arrow.png -------------------------------------------------------------------------------- /commands/dataValueCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/dataValueCommand.js -------------------------------------------------------------------------------- /commands/housingEditorCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/housingEditorCommand.js -------------------------------------------------------------------------------- /commands/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/index.js -------------------------------------------------------------------------------- /commands/itemCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/itemCommands.js -------------------------------------------------------------------------------- /commands/linkAccountCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/linkAccountCommand.js -------------------------------------------------------------------------------- /commands/loadItemCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/loadItemCommand.js -------------------------------------------------------------------------------- /commands/locationCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/locationCommand.js -------------------------------------------------------------------------------- /commands/npcListCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/npcListCommand.js -------------------------------------------------------------------------------- /commands/protoolsCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/protoolsCommand.js -------------------------------------------------------------------------------- /commands/selfStatCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/selfStatCommand.js -------------------------------------------------------------------------------- /commands/setCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/setCommand.js -------------------------------------------------------------------------------- /commands/sixSideCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/sixSideCommand.js -------------------------------------------------------------------------------- /commands/tpPosCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/tpPosCommands.js -------------------------------------------------------------------------------- /commands/upCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/commands/upCommand.js -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/config.toml -------------------------------------------------------------------------------- /gui/LoadActionGUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/gui/LoadActionGUI.js -------------------------------------------------------------------------------- /gui/Navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/gui/Navigator.js -------------------------------------------------------------------------------- /gui/Queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/gui/Queue.js -------------------------------------------------------------------------------- /gui/SearchHouseGUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/gui/SearchHouseGUI.js -------------------------------------------------------------------------------- /gui/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/gui/components/Button.js -------------------------------------------------------------------------------- /gui/components/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/gui/components/Input.js -------------------------------------------------------------------------------- /gui/components/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/gui/components/components.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/index.js -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/metadata.json -------------------------------------------------------------------------------- /socket/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/socket/connection.js -------------------------------------------------------------------------------- /socket/dependencies/engine.io-client-2.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/socket/dependencies/engine.io-client-2.0.0.jar -------------------------------------------------------------------------------- /socket/dependencies/json-20090211.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/socket/dependencies/json-20090211.jar -------------------------------------------------------------------------------- /socket/dependencies/okhttp-3.12.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/socket/dependencies/okhttp-3.12.12.jar -------------------------------------------------------------------------------- /socket/dependencies/okio-1.15.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/socket/dependencies/okio-1.15.0.jar -------------------------------------------------------------------------------- /socket/dependencies/socket.io-client-2.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/socket/dependencies/socket.io-client-2.0.1.jar -------------------------------------------------------------------------------- /utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/utils/config.js -------------------------------------------------------------------------------- /utils/createItemStack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/utils/createItemStack.js -------------------------------------------------------------------------------- /utils/getEnchantment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/utils/getEnchantment.js -------------------------------------------------------------------------------- /utils/getItemFromNBT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/utils/getItemFromNBT.js -------------------------------------------------------------------------------- /utils/getPotionEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/utils/getPotionEffect.js -------------------------------------------------------------------------------- /utils/inputAnvil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/utils/inputAnvil.js -------------------------------------------------------------------------------- /utils/loadItemstack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/utils/loadItemstack.js -------------------------------------------------------------------------------- /worldedit/blockListUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/worldedit/blockListUtil.js -------------------------------------------------------------------------------- /worldedit/blocklist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/worldedit/blocklist.json -------------------------------------------------------------------------------- /worldedit/index.js: -------------------------------------------------------------------------------- 1 | import "./selectionInAir"; 2 | -------------------------------------------------------------------------------- /worldedit/selectionAddons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/worldedit/selectionAddons.js -------------------------------------------------------------------------------- /worldedit/selectionInAir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImaDoofus/HousingEditor/HEAD/worldedit/selectionInAir.js --------------------------------------------------------------------------------