335
edits
Changes
m
if (rand() & 3): side = 1 - player.facing # Spawn in front of the player else: side = player.facing # Spawn behind the player</nowiki>
Fix code block
elif player.screenX >= 177:
side = 0 # Always spawn on the left side, since the player is too far right
elif (rand() & 3):
side = 1 - player.facing # Spawn in front of the player
else: