| Total Complexity | 1 | 
| Total Lines | 12 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | package de.pewpewproject.lasertag.mixin; | ||
| 13 | @Mixin(IntegratedServerLoader.class) | ||
| 14 | public class IntegratedServerLoaderMixin { | ||
| 15 | |||
| 16 | // Set canShowBackupPrompt = false | ||
| 17 | @ModifyVariable( | ||
| 18 | method = "start(Lnet/minecraft/client/gui/screen/Screen;Ljava/lang/String;ZZ)V", | ||
| 19 |             at = @At("HEAD"), | ||
| 20 | argsOnly = true, | ||
| 21 | index = 4 | ||
| 22 | ) | ||
| 23 |     private boolean removeAdviceOnLoad(boolean original) { | ||
| 24 | return false; | ||
| 25 | } | ||
| 27 |