Skip to content

Commit

Permalink
Added 1.20.2 DBOP 0.1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
yichifauzi committed Nov 4, 2023
1 parent 260150b commit d2d601f
Show file tree
Hide file tree
Showing 104 changed files with 2,666 additions and 0 deletions.
Empty file.
45 changes: 45 additions & 0 deletions packwiz/1.20.2/config/authme.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
// Auth Button
"authButton": {
// Position of the button on the multiplayer screen
"x": 6,
// Position of the button on the multiplayer screen
"y": 6,
// True if the button can be dragged to a new position
"draggable": true
},
// Login Methods
"methods": {
// Login via Microsoft
"microsoft": {
// Indicates the type of user interaction that is required
"prompt": "DEFAULT",
// The port from which to listen for OAuth2 callbacks
"port": 25585,
// OAuth2 client id
"clientId": "e16699bb-2aa8-46da-b5e3-45cbcce29091",
// OAuth2 authorization url
"authorizeUrl": "https://login.microsoftonline.com/consumers/oauth2/v2.0/authorize",
// OAuth2 access token url
"tokenUrl": "https://login.microsoftonline.com/consumers/oauth2/v2.0/token",
// Xbox authentication url
"xboxAuthUrl": "https://user.auth.xboxlive.com/user/authenticate",
// Xbox XSTS authorization url
"xboxXstsUrl": "https://xsts.auth.xboxlive.com/xsts/authorize",
// Minecraft authentication url
"mcAuthUrl": "https://api.minecraftservices.com/authentication/login_with_xbox",
// Minecraft profile url
"mcProfileUrl": "https://api.minecraftservices.com/minecraft/profile"
},
// Login via Mojang (or legacy)
"mojang": {
// Last used username
"lastUsername": ""
},
// Login Offline
"offline": {
// Last used username
"lastUsername": ""
}
}
}
143 changes: 143 additions & 0 deletions packwiz/1.20.2/config/c2me.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
version = 3
# (Default:
# max(
# 1,
# min(
# if( is_windows,
# (cpus / 1.6 - 2),
# (cpus / 1.2 - 2)
# ),
# if( is_j9vm,
# ( ( mem_gb - (if(is_client, 0.6, 0.2)) ) / 0.5 ),
# ( ( mem_gb - (if(is_client, 1.2, 0.6)) ) / 1.2 )
# )
# ) - if(is_client, 2, 0)
# )
# )
# The expression for the default value of global executor parallelism.
# This is used when the parallelism isn't overridden.
# Available variables: is_windows, is_j9vm, is_client, cpus, mem_gb
#
defaultGlobalExecutorParallelismExpression = "default"
# (Default: 1) Configures the parallelism of global executor
globalExecutorParallelism = "default"

[clientSideConfig]

[clientSideConfig.modifyMaxVDConfig]
# (Default: true) Whether to modify maximum view distance
enabled = "default"
# (Default: 35) Max render distance allowed in game options
maxViewDistance = "default"

[fixes]
# (Default: true) Enforces safe world random access.
# This feature detects unsafe off-thread world random access, helping to find the causes
# of mysterious "Accessing LegacyRandomSource from multiple threads" crash.
# The default behavior is to fail hard when such bad things happens.
# Disabling this option will replace this behavior with a warning.
#
# It is generally not recommended to disable this settings unless you know what you are doing
#
#
enforceSafeWorldRandomAccess = "default"

[noTickViewDistance]
# (Default: true) Whether to enable no-tick view distance
enabled = "default"
# (Default: 2) No-tick view distance max concurrent chunk loads
# Lower this for a better latency and higher this for a faster loading
maxConcurrentChunkLoads = "default"
# (Default: true) Whether to use compatibility mode to send chunks
# This may fix some mod compatibility issues
compatibilityMode = "default"
# (Default: false) Whether to ensure correct chunks within normal render distance
# This will send chunks twice increasing network load
ensureChunkCorrectness = "default"

[generalOptimizations]
# (Default: true) Whether to let async chunk request no longer block server thread
# (may cause incompatibility with other mods)
optimizeAsyncChunkRequest = "default"
# (Default: 100000) The task interval of mid-tick chunk tasks in nanoseconds (-1 to disable)
# Mid-tick chunk tasks is to execute chunk tasks during server tick loop
# to speed up chunk loading and generation
# This helps chunks loading and generating under high MSPT but may raise
# MSPT when chunks are loading or generating
#
# It is generally not recommended to adjust this value unless you know
# what you are doing
#
# Incompatible with Dimensional Threading (dimthread)
#
midTickChunkTasksInterval = "default"

[generalOptimizations.autoSave]
# (Default: ENHANCED) Defines how auto save should be handled
# VANILLA: Use vanilla auto-save behavior (auto-save performed every tick during ticking)
# ENHANCED: Use C2ME enhanced auto-save (auto-save performed when the server have spare time after ticking)
# PERIODIC: Use pre-1.18 vanilla auto-save behavior (auto-save performed every 6000 ticks during ticking)
#
# Please preserve quotes so this config don't break
#
mode = "default"
# (Default: 20000) Defines the delay in milliseconds between performing auto-save for a chunk
# This is only used when mode is set to ENHANCED
#
delay = "default"

[ioSystem]
# (Default: 8192) Soft limit for io worker nbt cache
chunkDataCacheSoftLimit = "default"
# (Default: 32678) Hard limit for io worker nbt cache
chunkDataCacheLimit = "default"
# (Default: -1) Defines which chunk compression should be used
# -1 for Vanilla default
# 1 for GZip (RFC1952) (Vanilla compatible)
# 2 for Zlib (RFC1950) (Vanilla default) (Vanilla compatible)
# 3 for Uncompressed (Fastest, but higher disk usage) (Vanilla compatible)
#
# Original chunk data will still readable after modifying this option
# as this option only affects newly stored chunks
# Invalid values will fall back to vanilla default
#
chunkStreamVersion = "default"
# (Default: false) EXPERIMENTAL FEATURE
# This replaces the way your chunks are saved.
# Please keep regular backups of your world if you are using this feature,
# and report any world issues you encounter with this feature to our GitHub.
#
# Whether to use the fast reduced allocation chunk serializer
# (may cause incompatibility with other mods)
#
gcFreeChunkSerializer = "default"
# (Default: false) Whether to use the optimized implementation of IO system
replaceImpl = "default"
# (Default: true) Whether to use async chunk loading & unloading
async = "default"

[threadedWorldGen]
# (Default: false) Whether to enable this feature
enabled = "default"
# (Default: true) Whether to allow feature generation (world decorations like trees, ores and etc.) run in parallel
# (may cause incompatibility with other mods)
allowThreadedFeatures = "default"
# (Default: true) Whether to allow reducing lock radius
# (may cause incompatibility with other mods)
reduceLockRadius = "default"
# (Default: true) Whether to enable async and parallel scheduling
# This will reduce server thread load
# (may cause incompatibility with other mods)
#
asyncScheduling = "default"

[vanillaWorldGenOptimizations]
# (Default: true) Whether to enable aquifer optimizations to accelerate overworld worldgen
# (may cause incompatibility with other mods)
optimizeAquifer = "default"
# (Default: true) Whether to enable End Biome Cache to accelerate The End worldgen
# This is no longer included in lithium-fabric
# (may cause incompatibility with other mods)
#
useEndBiomeCache = "default"

6 changes: 6 additions & 0 deletions packwiz/1.20.2/config/chat_heads.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"offsetNonPlayerText": true,
"senderDetection": "UUID_AND_HEURISTIC",
"smartHeuristics": true,
"nameAliases": { }
}
7 changes: 7 additions & 0 deletions packwiz/1.20.2/config/citresewn.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"enabled": true,
"mute_errors": false,
"mute_warns": false,
"cache_ms": 50,
"broken_paths": false
}
6 changes: 6 additions & 0 deletions packwiz/1.20.2/config/continuity.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"connected_textures": true,
"emissive_textures": true,
"custom_block_layers": true,
"use_manual_culling": true
}
21 changes: 21 additions & 0 deletions packwiz/1.20.2/config/controlify.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"last_seen_version": "1.5.1+1.20",
"current_controller": null,
"controllers": {},
"compound_joysticks": [],
"global": {
"virtual_mouse_screens": [
"net.minecraft.class_465"
],
"keyboard_movement": false,
"out_of_focus_input": false,
"load_vibration_natives": false,
"vibration_onboarded": false,
"reach_around": "OFF",
"allow_server_rumble": true,
"ui_sounds": false,
"notify_low_battery": true,
"delegate_setup": false,
"ingame_button_guide_scale": 1.0
}
}
1 change: 1 addition & 0 deletions packwiz/1.20.2/config/debugify-descriptions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"MC-93018":"Wild wolves show breeding hearts but do not breed","MC-127970":"Using Riptide on a trident with an item in your off-hand causes visual glitch with said item","MC-200418":"Cured baby zombie villagers stay as jockey variant","MC-199467":"Certain entity animations stop after they\u0027ve existed in world for too long","MC-159163":"Quickly pressing the sneak key causes the sneak animation to play twice","MC-121903":"Command block minecarts do not save execution cooldown to NBT","MC-119754":"Firework boosting on elytra continues in spectator mode","MC-129909":"Players in spectator mode continue to consume foods and liquids shortly after switching game modes","MC-206922":"Items dropped by entities that are killed by lightning instantly disappear","MC-121706":"Skeletons and illusioners aren\u0027t looking up / down at their target while strafing","MC-55347":"Title with long duration shows in other world","MC-80859":"Starting to drag item stacks over other compatible stacks makes the latter invisible until appearance change (stack size increases)","MC-93384":"Bubbles appear at the feet of drowning mobs","MC-88371":"Ender Dragon flies down in the void when the exit portal is destroyed","MC-108948":"Boats / boats with chest on top of slime blocks hover over block","MC-8187":"Two-by-two arrangements of jungle or spruce saplings cannot grow when there are adjacent blocks located north or west of the sapling formation","MC-122477":"Linux/GNU: Opening chat sometimes writes \u0027t\u0027","MC-89146":"Pistons forget update when being reloaded","MC-122627":"Tab suggestion box has missing padding on right side","MC-577":"Mouse buttons block all inventory controls that are not default","MC-135971":"Can\u0027t use CTRL+Q in crafting table","MC-143474":"Respawning causes your hotbar to reset to the first space","MC-237493":"Telemetry cannot be disabled","MC-79545":"The experience bar disappears when too many levels are given to the player","MC-30391":"Chickens, blazes and the wither emit particles when landing from a height, despite falling slowly","MC-90683":"\"Received unknown passenger\" - Entities with differing render distances as passengers outputs error","MC-72151":"Snow Golem\u0027s snowballs damage wolves instead of pushing them","MC-217716":"The green nausea overlay isn\u0027t removed when switching into spectator mode","MC-90084":"When sitting in boats and boats with chest mobs legs penetrate the hull","MC-46766":"Mining a block in Survival, then changing to Spectator creates a breaking animation and sound","MC-100991":"Killing entities with a fishing rod doesn\u0027t count as a kill","MC-197260":"Armor Stand renders itself and armor dark if its head is in a solid block","MC-183776":"After switching game modes using F3+F4, you need to press F3 twice to toggle the debug screen","MC-224729":"Partially generated chunks are not saved in some situations","MC-121772":"Can\u0027t scroll while holding SHIFT on macOS","MC-4490":"Fishing line not attached to fishing rod in third person while crouching","MC-215530":"The freezing effect isn\u0027t immediately removed upon switching into spectator mode","MC-231743":"\"minecraft.used:minecraft.\u003cPOTTABLE_PLANT\u003e\" doesn\u0027t increase when placing plants into flower pots","MC-193343":"Soul Speed effect remains after switching to spectator mode","MC-215531":"The carved pumpkin overlay is rendered in spectator mode","MC-140646":"Text fields don\u0027t scroll while selecting text with Shift","MC-7569":"RCON output has newlines removed","MC-14923":"Players can be kicked for spamming in a singleplayer world with cheats disabled","MC-179072":"Creepers do not defuse when switching from Survival to Creative/Spectator","MC-232869":"Adult striders can spawn with saddles in peaceful mode","MC-12829":"Flying through climbable blocks in creative mode slows you down","MC-176559":"Breaking process resets when a pickaxe enchanted with Mending mends by XP / Mending slows down breaking blocks again","MC-227169":"The main hand is positioned incorrectly when holding a loaded crossbow in your offhand","MC-119417":"A spectator can occupy a bed if they enter it and then are switched to spectator mode","MC-31819":"Hunger saturation depletes on Peaceful","MC-132878":"Armor stands destroyed by explosions/lava/fire don\u0027t produce particles","MC-263865":"Fullscreen state isn\u0027t saved","MC-231097":"Holding the \"Use\" button continues to slow down the player even after the used item has been dropped","MC-111516":"Player flickers/turns invisible when flying at high speeds","MC-69216":"Switching to spectator mode while fishing keeps rod cast","MC-22882":"Ctrl + Q won\u0027t work on Mac","MC-124117":"Nbt Tags doesn\u0027t work?","MC-123739":"Recipe book entries are not sorted in any meaningful manner","MC-160095":"End Rods only break Cactus when moved by pistons","MC-116379":"Punching with a cast fishing rod in the off-hand detaches fishing line from rod","MC-223153":"Block of Raw Copper uses stone sounds instead of copper sounds","MC-59810":"Cannot break blocks while sprinting (Ctrl+Click \u003d right click on macOS)","MC-165381":"Block breaking can be delayed by dropping/throwing the tool while breaking a block","MC-155509":"Dying puffed pufferfish can still sting players","MC-183990":"Group AI of some mobs breaks when their target dies","MC-112730":"Beacon beam and structure block render twice per frame","MC-2025":"Mobs going out of fenced areas/suffocate in blocks when loading chunks"}
72 changes: 72 additions & 0 deletions packwiz/1.20.2/config/debugify.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"MC-577": true,
"MC-2025": true,
"MC-4490": true,
"MC-7569": true,
"MC-8187": true,
"MC-12829": true,
"MC-14923": true,
"MC-22882": true,
"MC-30391": true,
"MC-31819": true,
"MC-46766": true,
"MC-55347": true,
"MC-59810": false,
"MC-69216": true,
"MC-72151": true,
"MC-79545": true,
"MC-80859": true,
"MC-88371": true,
"MC-89146": true,
"MC-90084": true,
"MC-90683": true,
"MC-93018": true,
"MC-93384": true,
"MC-100991": true,
"MC-108948": true,
"MC-111516": true,
"MC-112730": true,
"MC-116379": true,
"MC-119417": true,
"MC-119754": true,
"MC-121706": true,
"MC-121772": true,
"MC-121903": true,
"MC-122477": true,
"MC-122627": true,
"MC-123739": true,
"MC-124117": true,
"MC-127970": true,
"MC-129909": true,
"MC-132878": true,
"MC-135971": true,
"MC-140646": true,
"MC-143474": true,
"MC-155509": true,
"MC-159163": true,
"MC-160095": true,
"MC-165381": true,
"MC-176559": true,
"MC-179072": true,
"MC-183776": true,
"MC-183990": true,
"MC-193343": true,
"MC-197260": true,
"MC-199467": true,
"MC-200418": true,
"MC-206922": true,
"MC-215530": true,
"MC-215531": true,
"MC-217716": true,
"MC-223153": true,
"MC-224729": true,
"MC-227169": true,
"MC-231097": true,
"MC-231743": true,
"MC-232869": true,
"MC-237493": true,
"MC-263865": true,
"opt_out_updater": false,
"gameplay_fixes_in_multiplayer": false,
"default_disabled": false
}
6 changes: 6 additions & 0 deletions packwiz/1.20.2/config/dynamicfps.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
reduceFPSWhenUnfocused = true
unfocusedFPS = 1
restoreFPSWhenHovered = true
unfocusedVolumeMultiplier = 0.25
hiddenVolumeMultiplier = 0.0
runGCOnUnfocus = false
20 changes: 20 additions & 0 deletions packwiz/1.20.2/config/enhanced_bes.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#Configuration file for Enhanced Block Entities
#Mon Aug 14 21:08:23 WIB 2023
decorated_pot_ao=false
sign_ao=false
render_enhanced_signs=true
bell_ao=true
shulker_box_ao=false
experimental_signs=true
chest_ao=false
sign_text_rendering=smart
render_enhanced_decorated_pots=true
experimental_chests=true
christmas_chests=allowed
bed_ao=false
render_enhanced_chests=true
render_enhanced_beds=true
render_enhanced_shulker_boxes=true
experimental_beds=true
render_enhanced_bells=true
force_resource_pack_compat=false
12 changes: 12 additions & 0 deletions packwiz/1.20.2/config/entity_model_features.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"printModelCreationInfoToLog": false,
"printAllMaths": false,
"renderCustomModelsGreen": false,
"vanillaModelRenderMode": "Off",
"mathFunctionChoice": "JavaMath",
"tryForceEmfModels": true,
"printUnknownModelsMode": "NONE",
"attemptPhysicsModPatch_1": false,
"attemptToCopyVanillaModelIntoMissingModelPart": false,
"textureOverrideMode": "USE_IRIS_QUIRK_AND_DEFER_TO_EMF_CODE_OTHERWISE"
}
Loading

0 comments on commit d2d601f

Please sign in to comment.