Search found 7 matches

by Munin
Thu Oct 20, 2016 9:46 pm
Forum: Bugs Archive
Topic: Typos (1.4 and onward!)
Replies: 141
Views: 147161

Re: Typos (1.4 and onward!)

The 'welcome' text at the start of the Arena campaign:
...
Whoever defeats the Master of Arena
should be
...
Whoever defeats the Master of the Arena
by Munin
Thu Oct 20, 2016 9:42 pm
Forum: Bugs Archive
Topic: [1.4.8]T4-engine bug in engine/module.lua
Replies: 2
Views: 1614

[1.4.8]T4-engine bug in engine/module.lua

I wanted to cut down loading times by unpacking the engine and module files into directories of the same name sans the suffix. This resulted in a black screen with only a mouse cursor and nothing else because the relevant code seems not to have been touched for quite some time. The following changes...
by Munin
Thu Oct 13, 2016 2:51 am
Forum: Bugs Archive
Topic: Typos (1.4 and onward!)
Replies: 141
Views: 147161

Re: Typos (1.4 and onward!)

Description of 'Dirty Fighting':
"...Stun chance increase..." -> "...Stun chance increases..."
by Munin
Thu Oct 13, 2016 2:10 am
Forum: Bugs Archive
Topic: Typos (1.4 and onward!)
Replies: 141
Views: 147161

Re: Typos (1.4 and onward!)

Description of the 'Heave' talent:
"The knockback chance increase..." -> "The knockback chance increases..."
by Munin
Thu Oct 13, 2016 12:12 am
Forum: Bugs Archive
Topic: Typos (1.4 and onward!)
Replies: 141
Views: 147161

Re: Typos (1.4 and onward!)

In the description for the Arcane Vortex:
"An arcane vortex followes..." -> "An arcane vortex follows..."
"...is deal as a radius 2 ball of arcane." -> " is dealt as arcane in a circle of radius 2."
by Munin
Thu Oct 06, 2016 5:23 pm
Forum: Bugs Archive
Topic: [1.4.8] damage type values expected to be of type "number"
Replies: 0
Views: 1903

[1.4.8] damage type values expected to be of type "number"

In mod/class/object.lua the two functions getTextualDesc() and getPriceFlags() expect damage type values to be of type number and will crash if it is a table I fixed this locally by simply adding: local type_of_v=_G.type(v[1]) local tmp_v=0 if type_of_v=="number" then tmp_v=v[1] elseif typ...
by Munin
Thu Oct 06, 2016 3:52 pm
Forum: Bugs Archive
Topic: Typos (1.4 and onward!)
Replies: 141
Views: 147161

Re: Typos (1.4 and onward!)

The "marksman's" ego for rings has keywords = {marskman=true}, defined which means the short name displayed above the ring on the doll part of the inventory screen for the ego is also "marskman". This is 1.4.8, file date 14.06.2016 In mod/class/object.lua Shots beam through all t...