Changes Needed For Hodgepodge

This commit is contained in:
TheBrokenRail 2024-09-30 00:03:52 -04:00
parent 9bdde40f3f
commit 916902ab68
6 changed files with 9 additions and 3 deletions

View File

@ -44,7 +44,7 @@
* `Improved Classic Title Positioning` (Enabled By Default) * `Improved Classic Title Positioning` (Enabled By Default)
* `Use Updated Title` (Enabled By Default) * `Use Updated Title` (Enabled By Default)
* `Hide Block Outline When GUI Is Hidden` (Enabled By Default) * `Hide Block Outline When GUI Is Hidden` (Enabled By Default)
* `Fix Crash When Generating Certain Seed` (Enabled By Default) * `Fix Crash When Generating Certain Seeds` (Enabled By Default)
* `Click Buttons On Mouse Down` (Enabled By Default) * `Click Buttons On Mouse Down` (Enabled By Default)
* Existing Functionality (All Enabled By Default) * Existing Functionality (All Enabled By Default)
* `Fix Screen Rendering When Hiding HUD` * `Fix Screen Rendering When Hiding HUD`

View File

@ -107,5 +107,5 @@ TRUE Allow High-Resolution Title
TRUE Improved Classic Title Positioning TRUE Improved Classic Title Positioning
TRUE Use Updated Title TRUE Use Updated Title
TRUE Hide Block Outline When GUI Is Hidden TRUE Hide Block Outline When GUI Is Hidden
TRUE Fix Crash When Generating Certain Seed TRUE Fix Crash When Generating Certain Seeds
TRUE Click Buttons On Mouse Down TRUE Click Buttons On Mouse Down

View File

@ -589,7 +589,7 @@ void init_misc() {
} }
// Rare Segfault // Rare Segfault
if (feature_has("Fix Crash When Generating Certain Seed", server_enabled)) { if (feature_has("Fix Crash When Generating Certain Seeds", server_enabled)) {
overwrite_call((void *) 0xb198c, (void *) Dimension_isValidSpawn_Level_getTopTile_injection); overwrite_call((void *) 0xb198c, (void *) Dimension_isValidSpawn_Level_getTopTile_injection);
} }

View File

@ -37,6 +37,7 @@ set(SRC
src/entity/PathfinderMob.def src/entity/PathfinderMob.def
src/entity/HumanoidModel.def src/entity/HumanoidModel.def
src/entity/TripodCameraRenderer.def src/entity/TripodCameraRenderer.def
src/entity/TripodCamera.def
src/entity/MobFactory.def src/entity/MobFactory.def
src/entity/EntityRenderDispatcher.def src/entity/EntityRenderDispatcher.def
src/entity/MobRenderer.def src/entity/MobRenderer.def

View File

@ -0,0 +1,3 @@
extends Mob;
vtable 0x10c870;

View File

@ -1,5 +1,7 @@
extends Tile; extends Tile;
constructor (int id, int texture, const Material *material) = 0xbe578;
vtable 0x111348; vtable 0x111348;
vtable-size 0x108; vtable-size 0x108;
size 0x5c; size 0x5c;