mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
d_a_mg_rod equivalent (#2865)
This commit is contained in:
@@ -3578,7 +3578,6 @@ public:
|
||||
void setFishingArm1Angle(const csXyz& i_angle) { mFishingArm1Angle = i_angle; }
|
||||
void setFishingArm2Angle(const csXyz& i_angle) { field_0x3160 = i_angle; }
|
||||
|
||||
void onFishingRodCastingEnd() { onNoResetFlg1(FLG1_UNK_8000); }
|
||||
void endFishingCastWait() { offNoResetFlg2(FLG2_UNK_20000000); }
|
||||
|
||||
void startFishingCastWait() {
|
||||
|
||||
@@ -955,6 +955,7 @@ public:
|
||||
void onPortalWarpMidnaAtnKeep() { onEndResetFlg2(ERFLG2_PORTAL_WARP_MIDNA_ATN_KEEP); }
|
||||
void onFogFade() { onNoResetFlg2(FLG2_UNK_4000); }
|
||||
void onDkCaught2() { onNoResetFlg0(FLG0_DK_CAUGHT); }
|
||||
void onFishingRodCastingEnd() { onNoResetFlg1(FLG1_UNK_8000); }
|
||||
void onFishingRodReelEnd() { onEndResetFlg0(ERFLG0_UNK_20000); }
|
||||
void onFishingHit() { onEndResetFlg0(ERFLG0_UNK_10000); }
|
||||
void onFishingKeep() { onEndResetFlg2(ERFLG2_UNK_1); }
|
||||
|
||||
+2
-2
@@ -457,8 +457,8 @@ public:
|
||||
void init();
|
||||
void addFishCount(u8 i_fishIndex);
|
||||
u16 getFishCount(u8 i_fishIndex) const { return mFishCount[i_fishIndex]; }
|
||||
u8 getMaxSize(s32 i_sizeIndex) { return mMaxSize[i_sizeIndex]; }
|
||||
void setMaxSize(s32 i_sizeIndex, u8 i_size) { mMaxSize[i_sizeIndex] = i_size; }
|
||||
u8 getMaxSize(int i_sizeIndex) const { return mMaxSize[i_sizeIndex]; }
|
||||
void setMaxSize(int i_sizeIndex, u8 i_size) { mMaxSize[i_sizeIndex] = i_size; }
|
||||
|
||||
private:
|
||||
/* 0x00 */ u16 mFishCount[16];
|
||||
|
||||
Reference in New Issue
Block a user