同意Eula
(self)
| 252 | return False |
| 253 | |
| 254 | def acceptEula(self): |
| 255 | """同意Eula""" |
| 256 | writeFile( |
| 257 | f"{self.serverDir}/eula.txt", |
| 258 | f"# By changing the setting below to TRUE you are indicating your agreement to Mojang EULA (https://aka.ms/MinecraftEULA).\n# Generated by MCSL2. Time: {str(datetime.now().strftime('%Y-%m-%d %H:%M:%S'))}\neula=true", # noqa: E501 |
| 259 | ) |
| 260 | |
| 261 | |
| 262 | class ServerLauncher: |