Skip to content

Commit

Permalink
Localize the fixes enabled config section
Browse files Browse the repository at this point in the history
  • Loading branch information
Runemoro committed Jul 1, 2018
1 parent 9016020 commit be4406c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class MixinForgeBlockModelRenderer {
* @reason Adds the textures used to render this block to the set of textures in
* the CompiledChunk.
*/
@Inject(method = "render", at = @At("HEAD"))
@Inject(method = "render", at = @At("HEAD"), remap = false)
private static void onRender(VertexLighterFlat lighter, IBlockAccess world, IBakedModel model, IBlockState state, BlockPos pos, BufferBuilder wr, boolean checkSides, long rand, CallbackInfoReturnable<Boolean> cir) {
CompiledChunk compiledChunk = TemporaryStorage.currentCompiledChunk.get();
if (compiledChunk != null) {
Expand Down
10 changes: 10 additions & 0 deletions src/main/resources/assets/vanillafix/lang/en_us.lang
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,16 @@ vanillafix.crashes.replaceErrorNotifications=Replace Error Notifications
vanillafix.crashes.replaceErrorNotifications.tooltip=When several errors occur in a row, replace the notification rather than queuing more notifications
vanillafix.crashes.hasteURL=Haste URL
vanillafix.crashes.hasteURL.tooltip=The URL to the root of the haste instance to upload crash reports to, without a trailing slash.
vanillafix.fixes.bugFixes=Vanilla bug fixes
vanillafix.fixes.bugFixes.tooltip=Enable or disable Vanilla bug fixes
vanillafix.fixes.crashFixes=Crash improvements
vanillafix.fixes.crashFixes.tooltip=Enable or disable crash improvements (crash screen, mod identification, crash report formatting). Note that you can disable only the "Return to Main Menu" button from the "Crash Options config section".
vanillafix.fixes.modSupport=Mod support
vanillafix.fixes.modSupport.tooltip=Enable or disable support for other mods. Important: This will break some mods' animated textures. Don't disable this unless mod support is causing crashes.
vanillafix.fixes.profiler=Profiler improvements
vanillafix.fixes.profiler.tooltip=Enable or disable improvements to the profiler (Alt + F3 pie chart): Split entities and tile entities by mod, add F3 + S for server profiler pie chart
vanillafix.fixes.textureFixes=Texture optimizations
vanillafix.fixes.textureFixes.tooltip=Enable or disable texture optimizations. This is the feature that increases the game's FPS, so it's not recommended to disable this.

vanillafix.debug.switch_profiler.help=F3 + S = Cycle client <-> integrated server profiler
vanillafix.debug.switch_profiler.server=Using server profiler
Expand Down

0 comments on commit be4406c

Please sign in to comment.