diff options
-rw-r--r-- | css/Symbola.ttf | bin | 0 -> 2188952 bytes | |||
-rw-r--r-- | css/craftmine.css | 6 | ||||
-rw-r--r-- | inc/shop.inc | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/css/Symbola.ttf b/css/Symbola.ttf Binary files differnew file mode 100644 index 0000000..51d9a88 --- /dev/null +++ b/css/Symbola.ttf diff --git a/css/craftmine.css b/css/craftmine.css index 2a51ff7..a3ab87d 100644 --- a/css/craftmine.css +++ b/css/craftmine.css @@ -1,3 +1,8 @@ +@font-face { + font-family: "Symbola"; + font-weight: bold; + src: url('Symbola.ttf'); +} .tab-pane { display: none; } @@ -6,4 +11,5 @@ } .item-icon { font-size: 3em; + font-family: "Symbola"; } diff --git a/inc/shop.inc b/inc/shop.inc index 11cf97b..a0f9a8a 100644 --- a/inc/shop.inc +++ b/inc/shop.inc @@ -42,7 +42,6 @@ function buildShop() { } elseif(debitAccount($shop["cost"])) { initShop(); - $_SESSION["mine"]["gold"] -= $shop["cost"]; echo json_encode(sendShop()); } } |