ID:2152252
 
Resolved
BYOND Version:510.1346
Operating System:Linux
Web Browser:Chrome 53.0.2785.116
Applies to:Dream Maker
Status: Resolved (511.1359)

This issue has been resolved.
Descriptive Problem Summary: log(x, y) where both x and y are literal values and log(x, y) is not computable returns the wrong error. ("error: x: log(y,x) is not computable" instead of "error: log(x,y) is not computable")

Numbered Steps to Reproduce Problem: See code.

Code Snippet (if applicable) to Reproduce Problem:
/world/New()
var/x = log(1, 2) // error: 1: log(2,1) is not computable


Expected Results: error: log(1,2) is not computable

Actual Results: error: 1: log(2,1) is not computable

Does the problem occur:
Every time? Or how often? Every time
In other games? Yes
In other user accounts? Unknown
On other computers? Unknown

When does the problem NOT occur? When either: a) the call is computable, or b) at least one of the arguments is not determined at compile time.

Did the problem NOT occur in any earlier versions? If so, what was the last version that worked? Unknown

Workarounds: Don't do this.

Lummox JR resolved issue