Skip to content

Commit

Permalink
Fix left-facing DartTrap offsetting position when activated
Browse files Browse the repository at this point in the history
  • Loading branch information
MatusGuy committed Jul 24, 2024
1 parent b366b97 commit fdd3ad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/badguy/darttrap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ DartTrap::DartTrap(const ReaderMapping& reader) :
SoundManager::current()->preload("sounds/dartfire.wav");
if (m_start_dir == Direction::AUTO) { log_warning << "Setting a DartTrap's direction to AUTO is no good idea" << std::endl; }
m_state = IDLE;
set_colgroup_active(COLGROUP_DISABLED);
set_group(COLGROUP_DISABLED);

if (!Editor::is_active()) {
if (m_initial_delay == 0) m_initial_delay = 0.1f;
Expand Down

0 comments on commit fdd3ad0

Please sign in to comment.