mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-26 03:12:18 -05:00
Add Fireproof Deku Shield cheat (#440)
This commit is contained in:
parent
376860af9d
commit
d01d6ff3d1
@ -1041,6 +1041,8 @@ namespace SohImGui {
|
||||
Tooltip("Allows you to use any item at any location");
|
||||
EnhancementCheckbox("Freeze Time", "gFreezeTime");
|
||||
Tooltip("Freezes the time of day");
|
||||
EnhancementCheckbox("Fireproof Deku Shield", "gFireproofDekuShield");
|
||||
Tooltip("Prevents the Deku Shield from burning on contact with fire");
|
||||
|
||||
ImGui::EndMenu();
|
||||
}
|
||||
|
@ -3707,7 +3707,7 @@ s32 func_8083816C(s32 arg0) {
|
||||
}
|
||||
|
||||
void func_8083819C(Player* this, GlobalContext* globalCtx) {
|
||||
if (this->currentShield == PLAYER_SHIELD_DEKU) {
|
||||
if (this->currentShield == PLAYER_SHIELD_DEKU && (CVar_GetS32("gFireproofDekuShield", 0) == 0)) {
|
||||
Actor_Spawn(&globalCtx->actorCtx, globalCtx, ACTOR_ITEM_SHIELD, this->actor.world.pos.x,
|
||||
this->actor.world.pos.y, this->actor.world.pos.z, 0, 0, 0, 1);
|
||||
Inventory_DeleteEquipment(globalCtx, EQUIP_SHIELD);
|
||||
|
Loading…
Reference in New Issue
Block a user