Compile code snippet
Code Snippet (if applicable) to Reproduce Problem:
mob/verb/Or2(A as num, B as num)
world<<A^B
Expected Results:
The result to be sent to world when the verb is used after it is compiled and ran.
Actual Results:
warning: ^: statement has no effect
Compiles but does not function correctly when ran.
Does the problem occur anywhere else?
Probably, but I'm to busy to test that right now.
Workarounds:
mob/verb/Or(A as num, B as num)
world<<(A^B)