- Added some simple commands every practice server should have. These commands are only registered if you don't have them already. You can also disable them in the config:
Code (Text):
#/night, /day, /ping etc. See all with /practicecommands
enable-practice-commands: true
- Added tabcompletion to some commands. For example /battlekit and /arena.
- Your config will get 'golden-head-effects' if you have golden-head: true and you can change the effects there
- Adjusted stickspawn/freeze
- Added fight-start-commands and fight-end-commands:
Code (Text):
#note that this might cause slight performance decrease at the moment
#keeping the list empty will disable it completely
#remove the # to enable the commands below
fight-start-commands:
#- 'example console command'
#- 'player command: /example player command'
fight-end-commands:
#- 'example console command'
#- 'player command: /example player command'
Other new things in the config:
Code (Text):
#If this is false global elo is average elo of all kits. If it's true global elo is average elo of kits with different elo than the starting-elo
global-elo-ignore-starting-elo: false
#you should find "party:" in your config. Add 'allow-rod-boosting: false/true' under it
party:
#Allow hitting team mates with a rod
allow-rod-boosting: false
Misc:
- Removed cache-rollback-blocks from the config. This method will be used (and nothing will change unless you had it disabled)
- Fixed BotDuelStartEvent not being called
- All FightStartEvents are called when the fight starts (instead of how it was before; the events were called when the fight was initialized and kit was being selected)
- Tweaks & minor bug fixes