Changes Needed For Hodgepodge
This commit is contained in:
parent
9bdde40f3f
commit
916902ab68
@ -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`
|
||||||
|
@ -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
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
3
symbols/src/entity/TripodCamera.def
Normal file
3
symbols/src/entity/TripodCamera.def
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
extends Mob;
|
||||||
|
|
||||||
|
vtable 0x10c870;
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user