mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-19 13:00:11 -07:00
Fix accidental assignment expression (#4248)
A typo from a5c0cede12
resulted in various bugs due to giving every actor the same id.
This commit is contained in:
parent
4df4e61eb3
commit
081a55ab29
1 changed files with 1 additions and 1 deletions
|
@ -1446,7 +1446,7 @@ void RandomizerOnActorInitHandler(void* actorRef) {
|
||||||
|
|
||||||
//consumable bags
|
//consumable bags
|
||||||
if (
|
if (
|
||||||
actor->id = ACTOR_EN_ITEM00 &&
|
actor->id == ACTOR_EN_ITEM00 &&
|
||||||
(
|
(
|
||||||
(
|
(
|
||||||
RAND_GET_OPTION(RSK_SHUFFLE_DEKU_STICK_BAG) &&
|
RAND_GET_OPTION(RSK_SHUFFLE_DEKU_STICK_BAG) &&
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue