mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Fix bitwise ops broken in caee8d45
This commit is contained in:
@@ -243,6 +243,16 @@ Proc for attack log creation, because really why not
|
||||
|
||||
if(exclusive)
|
||||
user.status_flags |= DOING_TASK
|
||||
<<<<<<< HEAD
|
||||
||||||| parent of 21251d755c... Merge pull request #10996 from VOREStation/Arokha/fixbit
|
||||
|
||||
if(target && exclusive & TASK_TARGET_EXCLUSIVE)
|
||||
target.flags |= IS_BUSY
|
||||
=======
|
||||
|
||||
if(target && (exclusive & TASK_TARGET_EXCLUSIVE))
|
||||
target.flags |= IS_BUSY
|
||||
>>>>>>> 21251d755c... Merge pull request #10996 from VOREStation/Arokha/fixbit
|
||||
|
||||
. = 1
|
||||
while (world.time < endtime)
|
||||
@@ -282,6 +292,14 @@ Proc for attack log creation, because really why not
|
||||
|
||||
if(exclusive)
|
||||
user.status_flags &= ~DOING_TASK
|
||||
<<<<<<< HEAD
|
||||
||||||| parent of 21251d755c... Merge pull request #10996 from VOREStation/Arokha/fixbit
|
||||
if(target & exclusive & TASK_TARGET_EXCLUSIVE)
|
||||
target.flags &= ~IS_BUSY
|
||||
=======
|
||||
if(target && (exclusive & TASK_TARGET_EXCLUSIVE))
|
||||
target.flags &= ~IS_BUSY
|
||||
>>>>>>> 21251d755c... Merge pull request #10996 from VOREStation/Arokha/fixbit
|
||||
|
||||
if(progbar)
|
||||
qdel(progbar)
|
||||
|
||||
Reference in New Issue
Block a user