var/A = 2
var/B = 3
var/K = A**B
world << "A=[A] B=[B]"
world << "A**B=[K]"
world << "2**3=[2**3]"
Expected Results:
A=2 B=3
A**B=8
2**3=8
Actual Results:
A=2 B=3
A**B=3
2**3=8
When does the problem NOT occur?
512.1389
I think it's worth a hotfix.
ID:2304548
![]() Oct 12 2017, 9:48 am
|
|||||||||||||
Resolved
| |||||||||||||
Code Snippet (if applicable) to Reproduce Problem:
var/A = 2 Expected Results: A=2 B=3 A**B=8 2**3=8 Actual Results: A=2 B=3 A**B=3 2**3=8 When does the problem NOT occur? 512.1389 I think it's worth a hotfix. |