ironbane / IronbaneServerLegacy

A 3D MMO written using pure javascript.
http://www.ironbane.com/
GNU General Public License v3.0
175 stars 44 forks source link

Book bug #431

Closed eric-ycw closed 10 years ago

eric-ycw commented 10 years ago

http://www.ironbane.com/forum.php?action=topic&topic=1461

A glitch where the text ignores the boundaries of the book, and the text continues downward the screen.

Guigo91 commented 10 years ago

Issue comes from css and from text book content.

IronbaneServer / src / client / game / css / ironbane.less

book {

display:none; position:absolute; width:460px; height:420px; background-image:url(../media/images/misc/book.png); }

.bookPage { width:160px; should be 230px (460 / 2) height:320px; float:left; }

From IronbaneServer / install / 1_base.sql, in book table create statement, there are too many



INSERT INTO ib_books (id, title, text) VALUES ... (2,'Fibula Spear','









The great and powerful Fibula Spear. ...

I guess (2,'Fibula Spear','




The great and powerful Fibula Spear... is ok.

eric-ycw commented 10 years ago

Hm, @Guigo91 Maybe you can make a commit?

Guigo91 commented 10 years ago

I run Ironbane on localhost. I commit on my develop branch. Could I push on develop branch of Ironbane git directly ? Actually, I am not really familiar with git.

eric-ycw commented 10 years ago

Me too, you'll have to ask the other devs about that.

eric-ycw commented 10 years ago

Fixed.