drunksolo
06-29-2012, 06:38 PM
I don't know exactly why, but line 4851 in the current (4.3.6) version causes a segfault, which seems to occur while the updater script is running though that may be entirely unrelated and just due to timing.
Here's what it looks like normally:
@@list.each { |room| @@tags = @@tags | room.tags unless room.tags.nil? }
And here's what I edited, which seems to make it stop entirely (literally just print a blank string before the @@tags):
@@list.each { |room|
print ''
@@tags = @@tags |
room.tags unless room.tags.nil?
}
Has anybody else experienced this, or is it just me?
Here's what it looks like normally:
@@list.each { |room| @@tags = @@tags | room.tags unless room.tags.nil? }
And here's what I edited, which seems to make it stop entirely (literally just print a blank string before the @@tags):
@@list.each { |room|
print ''
@@tags = @@tags |
room.tags unless room.tags.nil?
}
Has anybody else experienced this, or is it just me?