Skip to content

Commit

Permalink
Fixes #254
Browse files Browse the repository at this point in the history
Fast crusher speed (case 6) should be the same speed as the remaster.
  • Loading branch information
atsb committed Aug 1, 2024
1 parent 7c3b4aa commit ed5c516
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,4 @@ Windows/Doom64EXPlus.vcxproj.user
src/engine/.DS_Store
*.user
*.bak
Windows/DOOM64EX+/x64/Release/Doom64EX+.vcxproj.FileListAbsolute.txt
2 changes: 1 addition & 1 deletion src/engine/p_spec.c
Original file line number Diff line number Diff line change
Expand Up @@ -1138,7 +1138,7 @@ int P_DoSpecialLine(mobj_t* thing, line_t* line, int side) {

case 6:
// Fast Ceiling Crush & Raise
ok = EV_DoCeiling(line, fastCrushAndRaise, CEILSPEED);
ok = EV_DoCeiling(line, fastCrushAndRaise, CEILSPEED*2);
break;

case 8:
Expand Down

0 comments on commit ed5c516

Please sign in to comment.