mirror of
https://github.com/zeldaret/ss
synced 2026-07-10 06:26:47 -04:00
More
This commit is contained in:
@@ -16,4 +16,7 @@ void setBeaconPosition(const mVec3_c *position, u32 beaconIndex);
|
||||
*/
|
||||
void setBeaconPositionChecked(const mVec3_c *position, u32 beaconIndex);
|
||||
|
||||
/** Checks whether the current stage is ineligible for beacon placement */
|
||||
bool doesStageForbidBeaconPlacement();
|
||||
|
||||
#endif
|
||||
|
||||
@@ -32,15 +32,15 @@ inline bool EventManagerIsInMap() {
|
||||
}
|
||||
|
||||
inline bool EventManagerIsMapOpen() {
|
||||
return EventManagerIsInMap() && dLytMap_c::GetInstance()->isOpenMaybe();
|
||||
return EventManagerIsInMap() && dLytMap_c::GetInstance()->isOpen();
|
||||
}
|
||||
|
||||
inline bool EventManagerIsMapOpenAndMessage() {
|
||||
return EventManagerIsMapOpen() && !dMessage_c::getInstance()->getField_0x328();
|
||||
inline bool EventManagerIsMapOpenNormal() {
|
||||
return EventManagerIsMapOpen() && !dMessage_c::getInstance()->getInMapEvent();
|
||||
}
|
||||
|
||||
inline bool EventManagerIsMapOpenAnd0x9008Eq10() {
|
||||
return EventManagerIsMapOpen() && dLytMap_c::GetInstance()->isSomeMapFieldEq10();
|
||||
inline bool EventManagerIsMapEventSaveObj() {
|
||||
return EventManagerIsMapOpen() && dLytMap_c::GetInstance()->isMapEventSaveObj();
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user