-
-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch to island homes from player homes. #1689
Conversation
Stores home locations and max homes in the Island object. Adds commands required to manage home names, specifically rename and delete. I did not add list as there is tab complete on island go, but it may be required. To Do: 1. Test 2. Add max homes setting when owner logs in. 3. Fix unit tests - they are probably broken 4. Add a conversion from player home locations to the island homes. Not sure what the best way to do this is. Use the owner's? 5. Localization of new strings
Conflicts: src/main/java/world/bentobox/bentobox/database/objects/Island.java
This is ready to go now. I haven't done the language translations, but apart from that it all seems to work. In terms of migration of homes, it's only done based on the island owner's homes. So, if non-owner team members had their own home locations, then they will lose them and they will be replaced by the owner's home locations, which are now the island home locations. They will be named simply 2,3,4,5, etc. |
Conflicts: src/test/java/world/bentobox/bentobox/managers/IslandsManagerTest.java
Unless there are any objections, I'm going to merge this into develop. We can improve it more over time. |
I agree with these changes. |
Okay, I'm going to merge so that we can get some broader testing done before release. |
Stores home locations and max homes in the Island object and uses named homes instead of numbers. Adds commands
required to manage home names, specifically rename and delete. I did not add list as there is tab complete on island go, but it may be required.
To Do:
What is not done or supported (yet?):