[SVN] New ego name bug

Where bugs go to lie down and rest

Moderator: Moderator

Post Reply
Message
Author
Un67
Higher
Posts: 45
Joined: Mon Sep 03, 2012 6:07 pm

[SVN] New ego name bug

#1 Post by Un67 »

I noticed that the two new egos, "dreamer's" and "dispeller's" are listed as suffixes, not prefixes. The code in question in egos\robes.lua:

Code: Select all

newEntity{
	power_source = {psionic=true},
	name = "dreamer's ", suffix=true, instant_resolve=true,
	keywords = {dreamer=true},
	level_range = {40, 50},
	greater_ego = 1,
	rarity = 30,
	cost = 60,
	wielder = {
		combat_physresist = resolvers.mbonus_material(10, 10),
		combat_spellresist = resolvers.mbonus_material(10, 10),
		combat_mentalresist = resolvers.mbonus_material(20, 20),
	},
}
newEntity{
	power_source = {arcane=true},
	name = "dispeller's ", suffix=true, instant_resolve=true,
	keywords = {dispeller=true},
	level_range = {40, 50},
	greater_ego = 1,
	rarity = 30,
	cost = 60,
	wielder = {
		combat_physresist = resolvers.mbonus_material(10, 10),
		combat_mentalresist = resolvers.mbonus_material(10, 10),
		combat_spellresist = resolvers.mbonus_material(20, 20),

peaceoutside
Halfling
Posts: 96
Joined: Tue Sep 11, 2012 10:21 pm
Location: Earth
Contact:

Re: [SVN] New ego name bug

#2 Post by peaceoutside »

There's also some suffixes that're marked as prefixes.

I'll post them here if I come across them again.

Post Reply